body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 400px;
}

header {
    height: auto;
    padding: 10px 15px;
}

.navbar {
    background-color: #333;
    color: #fff;
    padding: 10px;
}

/* Desktop Navigation where the links are. */
.desktop-nav {
    display: flex;
    gap: 15px;
    margin-left: auto;
    padding-right: 20px;

}

/* Desktop Nav bar links */
.desktop-nav .nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.desktop-nav .nav-link:hover {
    text-decoration: underline;
    color: #fff;
}

header .hamburger {
    display: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    text-align: left;
    /* colors the table background */
    background-color: #f9f9f9;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
}

thead th {
    background-color: #ffc32a !important; /* Your deep "Goldenrod" color */
    color: #000;
    font-weight: bold;
    /* Adding a transition makes the hover effect smooth */
    transition: background-color 0.2s ease-in-out;
}

tr:nth-child(even) {
    /* colors the even rows */
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #ffe599;
}

td {
    /* colors the text of the odd rows */
    color: #333;
}

/* Custom Buttons */
.btn-warning {
    background-color: #ffcc00;
    border: none;
    color: #000000;
    font-weight: bold;
}

/* Button Padding */
.btn-pad {
    margin: 10px !important;
}


/* Hide mobile menu buttons and menu on larger screens */
.cross  {
    display: none;
}

.menu  {
    display: none;
}

.hamburger-link {
    display: none;
}

/* Show hamburger menu and hide desktop nav on smaller screens */
@media (max-width: 768px) {

    .logo {
        width: 250px;
    }

    header .hamburger {
        display: block;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .cross {
        display: none;
    }

    .hamburger-link {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
        padding: 10px;
        display: block;
        margin-bottom: 5px;
    }

    .hamburger-link:hover {
    text-decoration: underline;
    color: #fff;
    }

    .menu {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background-color: #f4d03f;
        display: none;
        z-index: 999;
    }

    .menu.show {
        display: block;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 6px;
    }
}

.future-expiration {
    color: green !important;
    font-weight: bold;
}

.past-expiration {
    color: red !important;
    font-weight: bold;
}

.choices__inner {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px;
}

.choices__list--dropdown {
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.choices__item--selectable:hover {
    background-color: #f0f0f0;
}

.sort {
    color: black;
    text-decoration: none;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin: 0 0 10px 0;
}

.card ul {
    padding-left: 20px;
}

.sticky-container {
    position: sticky;
    top: 78px;
    z-index: 5;
    background-color: white;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Add this class to hide content initially to prevent flashing */
.content-loading {
    visibility: hidden !important;
}