.selena-booking-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px;
}

@media (max-width: 768px) {
    .selena-booking-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Calendar Styles */
.booking-calendar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.calendar {
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h2 {
    margin: 0;
    font-size: 20px;
    flex: 1;
    text-align: center;
}

.nav-btn {
    background: #FF0080;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.nav-btn:hover {
    background: #E60070;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.weekday {
    text-align: center;
    font-weight: bold;
    color: #666;
    font-size: 12px;
    padding: 10px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.day.empty {
    background: #f5f5f5;
    cursor: default;
}

.day.available {
    background: #f0f9ff;
    border-color: #0ea5e9;
    color: #0ea5e9;
}

.day.available:hover {
    background: #e0f2fe;
    transform: scale(1.05);
}

.day.pending {
    background: #fef08a;
    border-color: #eab308;
    color: #854d0e;
    cursor: not-allowed;
}

.day.confirmed {
    background: #d1fae5;
    border-color: #10b981;
    color: #065f46;
    cursor: not-allowed;
}

.day.rejected {
    background: #fee2e2;
    border-color: #ef4444;
    color: #991b1b;
    cursor: not-allowed;
}

.day.selected {
    background: #FF0080;
    color: white;
    border-color: #FF0080;
    font-weight: bold;
}

/* Form Styles */
.booking-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.booking-form h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
}

#booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#booking-form input,
#booking-form select,
#booking-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

#booking-form input:focus,
#booking-form select:focus,
#booking-form textarea:focus {
    outline: none;
    border-color: #FF0080;
    box-shadow: 0 0 0 3px rgba(255, 0, 128, 0.1);
}

.submit-btn {
    padding: 12px 24px;
    background: #FF0080;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #E60070;
}

.submit-btn:active {
    transform: scale(0.98);
}

/* Messages */
.form-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .selena-booking-wrapper {
        padding: 10px;
        gap: 20px;
    }
    
    .booking-calendar,
    .booking-form {
        padding: 15px;
    }
    
    .day {
        font-size: 12px;
    }
}
