        .tab-button {
        background-color: #e5e7eb;
        color: #323943ff;
        padding: 0.5rem 1rem;
        cursor: pointer;
        transition: all 0.2s;
        }
        .tab-button.bg-yellow-400 {
            background-color: #facc15;
            color: black;
        }

        @media (max-width: 640px) {
        #home {
        justify-content: flex-start;
        padding-top: 5.5rem;
        box-sizing: border-box;
        }

        #home-title {
        margin-top: 0.5rem;
        }

        .mobile-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        }

        .mobile-tabs > div {
        width: 100%;
        margin: 0;
        padding: 0;
        }

        .mobile-tabs .tab-button {
        flex: 1 1 0;
        min-height: 44px;
        white-space: normal;
        line-height: 1.1;
        font-size: 0.875rem;
        text-align: center;
        margin: 0;
        border-radius: 0;
        }

        .booking-panel {
        min-height: 560px;
        }

        #searchBtn {
        width: 100%;
        font-size: 15px;
        padding: 0.6rem;
        margin: 0;
        border-radius: 0;
        }

        #searchBtnMobile {
        width: 100%;
        font-size: 15px;
        padding: 0.6rem;
        border-radius: 0;
        }
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }



    @keyframes slideUp {
            from { transform: translateX(-50%) translateY(100%); opacity: 0; }
            to { transform: translateX(-50%) translateY(0); opacity: 1; }
        }
        @keyframes slideDown {
            from { transform: translateX(-50%) translateY(0); opacity: 1; }
            to { transform: translateX(-50%) translateY(100%); opacity: 0; }
        }
        .toast-notification {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #dc2626;
            color: #fff;
            padding: 16px 24px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 10000;
            animation: slideUp 0.3s ease-out;
            max-width: 90%;
            text-align: center;
            font-weight: 500;
        }
        .toast-notification.hiding {
            animation: slideDown 0.3s ease-in forwards;
        }