@import "2024DeskMenu.css";
@import "2024MobileMenu.css";
@import "2024Typography.css";
@import "2024Interactive.css";
@import "2024Homepage.css";
@import "2024SubPages.css";
@import "2024TradePage.css";
@import "2025TradePage.css";
@import "2024TradeListOverride.css";
@import "2024MyTradesecrets.css";
@import "SearchMacro.css";
@import "2024Chatbot.css";

body {
    background-color: #fbfeff;
}

a {
    text-decoration: none;
    color: #007994;
}

    a:hover:not(.btn) {
        text-decoration: underline;
    }

.maincontent p {
    padding: 5px;
    margin-bottom: 0px;
}

/* Header Styles */

.top-header {
    background-color: #fff;
}

.sticky-top {
    background-color: white !important;
}

.header-bar {
    background-color: #f8f9fa;
    height: 48px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 5% 100%);
    display: flex;
    align-items: center;
    width: 750px;
    font-size: 0.85em;
}

    .header-bar .button {
        height: 100%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        border: none;
        padding: 0 25px;
        border-radius: 0;
        font-size: 0.95em;
        white-space: nowrap;
    }

.button:hover {
    text-decoration: none !important;
}

.header-bar .btn-contact {
    background-color: #005072;
}

.header-bar .btn-access {
    background-color: #232E42;
}

.bar-content {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    height: 100%;
}

.search-icon {
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

    .search-icon img {
        height: 20px;
    }

.searchInput {
    width: 300px;
    border: 1px solid #CCC;
    border-bottom: 2px solid #005072;
    color: #005072;
    border-radius: 4px;
    padding: 4px;
}

    .searchInput::placeholder {
        color: #005072;
        padding-left: 6px;
    }

ul.search-results-list
{
    list-style: none;
    padding-left: 0px;
}

ul.search-results-list li {
   margin-bottom: 20px;
   margin-top: 10px;
}
ul.search-results-list li highlight{
    font-weight: 600;
}

/* Footer Styles */
.footer {
    background-color: #393e43;
}

    .footer p, .footer a {
        color: #CCC;
    }

    .footer .small {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .footer .link-group {
        margin-left: auto;
        display: flex;
        justify-content: flex-end;
    }

.blue-bar {
    background-color: #00aad2; /* Blue color */
    height: 58px; /* Set a fixed height for the bar */
    clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%); /* Tapered effect */
    color: white; /* Text color */
    display: flex;
    align-items: center;
    width: 40%; /* Full width but the clip-path will create the visual effect */
}

    .blue-bar .container {
        font-weight: 600;
        width: 100%;
        white-space: nowrap;
        text-align: end;
        padding-right: 75px;
    }

        .blue-bar .container a {
            color: white;
            text-decoration: none;
        }

    .blue-bar a:hover {
        text-decoration: none !important;
    }

    table.class-schedule th
    {
        text-align: center;
    }

@media (max-width: 1200px) {
    .header-bar .button {
        padding: 0 15px;
        border-radius: 0;
        font-size: 0.85em;
        white-space: nowrap;
    }
}

@media (max-width: 992px) {
    #searchToggleDiv, #searchToggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile {
        display: block !important;
    }

    .footer .mobile {
        display: flex !important;
        flex-direction: column;
    }

    .full-width-banner {
        display: none !important;
    }

    .mobile-banner {
        display: flex;
        flex-direction: column;
    }

    .desktop {
        display: none !important;
    }

    .blue-bar {
        width: 100%;
        clip-path: none;
    }

        .blue-bar .container {
            text-align: center;
            padding-right: 0;
        }
}

@media (min-width: 768px) {
    .mobile {
        display: none !important;
    }

    .desktop {
        display: block !important;
    }

    .footer .desktop {
        display: flex !important;
    }

    .full-width-banner {
        display: flex;
    }

    .mobile-banner {
        display: none;
    }
}
