/* ===== BERTS Floating Upcoming Courses Button ===== */

#upcoming-courses-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    background-color: #8F94A4;
    color: #fff;
    padding: 15px 30px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.8);
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    max-width: 220px;
    min-height: 35px;
    max-height: 50px;
}

#upcoming-courses-bar a {
    color: #f0e4d0;
    text-decoration: none;
    text-shadow:
        -1px -1px 1px black,
        1px -1px 1px black,
        -1px 1px 1px black,
        1px 1px 1px black;
}

/* Hover Effect */
#upcoming-courses-bar:hover {
    background-color: #f0e4d0;
    color: #8F94A4;
    border-color: #8f94a4;
    box-shadow: 0px 0px 10px rgba(240, 228, 208, 0.8);
    transform: scale(1.05) translateX(-50%);
    transition: all 0.2s ease-in-out;
}

#upcoming-courses-bar:hover a {
    color: #8f94a4;
}

/* Hide button on certain pages */
.hide-upcoming-button #upcoming-courses-bar {
    display: none !important;
}