/* Custom styles to complement Tailwind CSS */
.select2-container {
    width: 100% !important;
}

.select2-selection {
    height: 42px !important;
    padding: 6px !important;
    border-color: #e5e7eb !important;
    border-radius: 0.5rem !important;
}

.select2-selection__arrow {
    height: 42px !important;
}

.city-card {
    transition: transform 0.2s ease-in-out;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.flatpickr-input {
    background: white !important;
    height: 42px !important;
}

/* Apple-style gradient backgrounds */
.gradient-bg {
    background: linear-gradient(120deg, #00000008 0%, #00000000 100%);
}

/* Modern card styling */
.time-card {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Responsive typography */
@media (max-width: 640px) {
    .text-4xl {
        font-size: 2rem;
    }
    .text-6xl {
        font-size: 3rem;
    }
}

/* Time input and timezone sections */
.time-input-section {
    position: relative;
}

.timezone-section {
    position: relative;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}