/* CSS لواجهة SPA Booking System */
.spa-booking-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.spa-form-group {
    margin-bottom: 20px;
}

.spa-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.spa-form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.spa-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.spa-time-slot {
    padding: 10px 15px;
    border: 2px solid #0073aa;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.spa-time-slot:hover {
    background: #0073aa;
    color: white;
}

.spa-time-slot.selected {
    background: #0073aa;
    color: white;
}

.spa-time-slot.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #ccc;
}

.spa-barcode {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    border: 2px dashed #0073aa;
    border-radius: 10px;
}

.spa-barcode img {
    max-width: 100%;
    height: auto;
}

.spa-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.spa-dashboard-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.spa-calendar {
    width: 100%;
    border-collapse: collapse;
}

.spa-calendar th, .spa-calendar td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.spa-calendar .available { background: #d4edda; }
.spa-calendar .booked { background: #f8d7da; }
.spa-calendar .partial { background: #fff3cd; }
