body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* 🔹 Navbar Styling */
.navbar {
    background: #ffffff;
    padding: 15px;
    text-align: center;
}
.navbar a {
    color: rgb(31, 13, 192);
    padding: 10px 15px;
    text-decoration: none;
    font-size: 16px;
}
.navbar a:hover, .navbar a.active {
    background: #dfe4e8;
    border-radius: 5px;
}

/* 🔹 Container */
.container {
    width: 60%;
    margin: auto;
    background: white;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* 🔹 Hide Tab Content */
.tab-content {
    display: none;
}

/* 🔹 Form Styling */
input, button {
    padding: 10px;
    margin: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
button {
    background: #007bff;
    color: white;
    cursor: pointer;
}
.logo {
    width: 50px;
    height: 50px;
}
/* 🔹 Footer Styling */
.footer {
    background: #034285;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: relative;
    width: 100%;
    bottom: 0;
    margin-top: 100px;
  
}

.footer-container {
    width: 80%;
    margin: auto;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}
/* Search Results Section */
#searchResults {
    margin-top: 2rem;
    background-color: #fefefe;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

#searchResults legend {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a4f85;
    padding: 0 0.5rem;
}

/* Individual Result Card */
.search-result-card {
    background-color: #ffffff;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #0077cc;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.search-result-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

.search-result-card p {
    margin: 0.2rem 0;
    font-size: 0.95rem;
    color: #444;
}

.search-result-card a {
    font-weight: bold;
    color: #0077cc;
    text-decoration: none;
}

.search-result-card a:hover {
    text-decoration: underline;
}

/* Red label highlights */
.search-result-card strong.text-red-600 {
    color: #cc0000;
}
/* Fade-in animation */
@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .search-result-card {
    animation: fadeIn 0.5s ease forwards;
  }
  