.custom-book-button, .custom-sign_up-button {
    position: fixed; /* Stays in place when scrolling */
    top: 20px; /* Distance from the top */
    right: 20px; /* Distance from the right */
    
    font-family: 'BasisGrostesque', Arial, sans-serif;
    padding: 8px 20px;
    border: 1px solid white;
    color: white !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    background: transparent;
    border-radius: 0px;
    transition: all 0.3s ease;
    z-index: 1000; /* Keeps it above other elements */
}

@media (max-width: 768px) {
    .custom-book-button, .custom-sign_up-button {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        padding: 6px 16px;
        font-size: 14px;
        z-index: 1001;
    }

    .button-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 65px; 
        background: rgba(0, 0, 0, 0.7); 
        z-index: 1000;
    }
}

/* Extra fix for landscape mode on mobile devices */
@media (max-width: 1024px) and (orientation: landscape) {
    .custom-book-button, .custom-sign_up-button {
        top: auto;
        bottom: 14px;
        right: 50%;
        transform: translateX(50%);
        padding: 6px 16px;
        font-size: 12px;
        z-index: 1001;
    }

    .button-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 55px; 
        background: rgba(0, 0, 0, 0.7); 
        z-index: 1000;
    }
}

/* eleminates the gap below accordion title */
.uc-faq-accordion .t-section__title {
    margin-bottom: 0px !important;
    border 1px solid red;
}

/* reduce hero video play icon size */
.t266__play-icon {
    height: 40px !important;
    width: 40px !important;
}
.t266__play-icon-body {
    margin-top: -12px !important;
    margin-left: 15px !important;
    border-width: 8px 0 8px 14px !important;
    top: 60% !important;
}
.custom-book-button:hover, , .custom-sign_up-button:hover {
    background: white;
    color: black !important;
}

/* Menu item separator: 7="Contact Us" */
a[data-menu-item-number="7"] { 
    margin-bottom: 80px; 
    display: block; 
}

option {
    background: #333;
}
option:hover {
    background-color: #FF8562;
