/* ====================== style.css ====================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f8fafc;
}

/* Main Card */
.dashboard-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.05);
    border: 1px solid #e5e7eb;
}

/* Labels */
.booking-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

/* ==================== TEXTBOXES ==================== */
.booking-input {
    width: 100%;
    padding: 14px 16px;
    background-color: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    color: #1f2937;
    transition: all 0.2s ease;
}

.booking-input:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* For number inputs (Male, Female, Children) */
.booking-input[type="number"] {
    width: 100%;
    text-align: center;
    font-weight: 500;
}

/* Dropdown (ID Type) */
select.booking-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.025 2.345 4 3.204 4h9.592c.859 0 1.319 1.025.753 1.658l-4.796 5.482a1 1 0 01-1.506 0z'/%3E%3C/svg%3E");
    background-position: right 16px center;
    background-repeat: no-repeat;
    padding-right: 40px;
}

/* Booking Source Pills */
.booking-source-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.booking-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 11px 26px;
    background-color: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
}

.booking-pill:hover {
    background-color: #e2e8f0;
}

.booking-pill input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.booking-pill input[type="radio"]:checked + .booking-pill-text {
    color: #1e40af;
    font-weight: 600;
}

.booking-pill input[type="radio"]:checked {
    border-color: #2563eb;
    background-color: #eff6ff;
}

.booking-pill-text {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .dashboard-card {
        padding: 24px;
    }
}
