/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ea580c;
    border-radius: 3px;
}

/* Swiper Customization */
.swiper-pagination-bullet-active {
    background-color: #ea580c !important;
}

/* Date Selection Button Active State */
.date-btn.selected {
    background-color: #ea580c;
    color: white;
    border-color: #ea580c;
}

/* Sticky Button Animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-button-container {
    animation: slideUp 0.3s ease-out;
    z-index: 50;
}

/* General Tweaks */
body {
    -webkit-tap-highlight-color: transparent;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #9ca3af;
    background-color: #f9fafb;
    font-size: 1rem;
    line-height: 1.5;
    outline: none;
    transition: all 0.15s ease-in-out;
}

.form-input:focus {
    background-color: #ffffff;
    border-color: #ea580c;
    box-shadow: 0 0 0 2px #fed7aa;
}

.glass-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}