﻿.mobile-navbar {
    display: none;
}
.accordion {
    display: none;
}

.VDC-logo-mobile {
    display: none;
}
.search-icon-mobile{
    display: none;

}

.mobile-outreach-calendar {
    display: none;
}

/* Show on mobile */
@media (max-width: 768px) {
    .mobile-navbar {
            display: block;
        }

        /* Hide desktop nav if needed */
        .desktop-navbar {
            display: none;
        }

    .VDC-logo-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-right: 100px;
    }

        

    .accordion{
        display: block;
    }

    .mobile-layout-hidden {
        display: none !important;
    }

    .search-icon-mobile{
        display: block;
        padding-left: 145px;
    }

    .buyer-information-center-text-container{
        margin-bottom: -115px
    }

    .mobile-outreach-calendar {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
        text-align: center;
    }

        .mobile-outreach-calendar img {
            max-width: 100%;
            height: auto;
        }

    .accordion {
    }

    .accordion-button {
        font-size: 18px;
        background-color: var(--blue-button);
        color: white;
        cursor: pointer;
        padding: 10px;
        width: 100%;
        text-align: left;
        border: none;
        outline: none;
        transition: background-color 0.2s ease-in-out;
        display: flex;
        align-items: center;
        transition: background-color 0.2s ease-in-out;
        margin-bottom: 5px;
    }

    a.accordion-button {
        text-decoration: none;
        color: white;
    }

        a.accordion-button:hover {
            color: white;
        }


        .accordion-button:hover {
            background-color: var(--blue-button-hover);
        }

            .accordion-button:hover .plus-minus-icon {
                background-color: white;
                color: var(--blue-button);
            }

        .accordion-button:hover, .active .accordion-button {
            background-color: var(--blue-button-hover);
        }

    .plus-minus-icon {
        margin-right: 10px;
        display: inline-block;
        width: 25px;
        height: 25px;
        line-height: 25px; /* Center the plus/minus icon vertically */
        text-align: center; /* Center the plus/minus icon horizontally */
        background-color: white;
        color: #0F3192;
        border-radius: 50%; /* Makes it a circle */
        font-size: 20px;
        font-weight: bold;
        vertical-align: middle;
        transition: all 0.2s ease-in-out;
        user-select: none; /* Prevents text selection */
    }

    /* Style adjustments when an accordion is active */
    .active .plus-minus-icon {
        color: #0F3192;
        background-color: white;
        content: "-";
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-in-out;
    }

        .accordion-content img {
            width: 100%;
            display: block;
        }

        .accordion-content a {
            font-size: 18px;
            color: #333;
            text-decoration: none;
            display: block;
            padding: 10px;
        }

            .accordion-content a:hover {
                color: #0F3192;
                background-color: #f0f0f0;
            }

    /* Class to add when the item is active */
    .active .accordion-content {
        max-height: 500px;
    }

    .active .accordion-button .plus-minus-icon {
        content: "-";
    }

    .accordion-link {
        display: block;
        margin: 5px auto; /* Add spacing between buttons */
        padding: 10px;
        width: calc(100% - 20px); /* Slightly smaller than the parent accordion-button */
        background-color: var(--blue-button);
        color: white !important;
        text-align: center;
        text-decoration: none;
        font-size: 0.9em;
        border: none;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    }

        .accordion-link:hover {
            background-color: var(--blue-button-hover);
            transform: scale(1.05); /* Slightly enlarge the button on hover */
        }

        .accordion-link:active {
            transform: scale(0.95); /* Slightly shrink the button on click */
        }


        
        
        
    

    
}