body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

header {
    background-color: #007bff;
    color: rgb(247, 246, 246);
    padding: 1em 0;
    text-align: center;
}

nav {
    background-color: #343a40;
    position: relative;
    top: 0;
    left: 0;
    height: 60px; /* Set a specific height */
    width: 100%; /* Full width */
    z-index: 1000; /* Ensure it stays above other content */
}

nav .navbar-nav .nav-link {
    color: white;
    font-weight: bold;
    
}

nav .navbar-nav .nav-link:hover {
    text-decoration: underline;
    
}
/* Highlight dropdown item when mouse hovers over it */
.dropdown-menu .dropdown-item:hover {
    background-color: #0056b3;  /* Change this color to highlight the item */
    color: white;  /* Optional: change text color */
}


main {
    max-width: 800px;
    margin: 80px auto 20px; /* Add top margin equal to nav height plus some spacing */
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
}

#navbarNav {
    background-color: rgb(52, 58, 64) !important;
    margin: 0px -16px;
}

.mt-13 {
    margin-top: 13rem !important;
}

h2 {
    color: #00cc88;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.table th {
    background-color: #0077cc;
    color: white;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

footer {
    background-color: #77c024;
    color: #990404;
    padding: 10px;
    font-size: 0.9em;
    text-align: center;
}
html {
    scroll-padding-top: 212px; /* Header + Navbar height */
}

@media only screen and (max-width: 767px) {
    .nav-title {
        font-size: 1.5rem;
    }
}

