.yclients-booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.yclients-booking-title {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.yclients-booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.yclients-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.yclients-form-group .required {
    color: #e74c3c;
}

.yclients-form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.yclients-form-control:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.yclients-loading {
    display: inline-block;
    margin-left: 10px;
    color: #666;
    font-size: 14px;
}

/* Календарь */
#yclients-calendar {
    margin-top: 10px;
}

.yclients-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 20px;
}

.yclients-calendar-header {
    text-align: center;
    font-weight: 600;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 4px;
}

.yclients-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
    position: relative;
}

.yclients-calendar-day:hover {
    transform: scale(1.05);
    z-index: 1;
}

.yclients-calendar-day.disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.5;
}

.yclients-calendar-day.past {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.yclients-calendar-day.available {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.yclients-calendar-day.available:hover {
    background: #c3e6cb;
}

.yclients-calendar-day.selected {
    background: #3498db;
    border-color: #2980b9;
    color: #fff;
    font-weight: 600;
}

.yclients-calendar-day.booked {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #6c757d;
    cursor: not-allowed;
}

/* Время */
.yclients-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.yclients-time-slot {
    padding: 10px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
}

.yclients-time-slot:hover {
    border-color: #3498db;
    transform: translateY(-2px);
}

.yclients-time-slot.available {
    background: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.yclients-time-slot.available:hover {
    background: #c3e6cb;
}

.yclients-time-slot.selected {
    background: #3498db;
    border-color: #2980b9;
    color: #fff;
    font-weight: 600;
}

.yclients-time-slot.booked {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Сообщения */
.yclients-form-messages {
    margin-bottom: 20px;
}

.yclients-message {
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.yclients-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.yclients-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.yclients-submit-btn {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.yclients-submit-btn:hover {
    background: #2980b9;
}

.yclients-submit-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

/* Навигация календаря */
.yclients-calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.yclients-calendar-nav button {
    padding: 8px 15px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.yclients-calendar-nav button:hover {
    background: #2980b9;
}

.yclients-calendar-nav button:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.yclients-calendar-month {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

