/**
 * Styles pour le formulaire de réservation
 */
.srv-booking-form-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
    background-color: #fcfcfc;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.srv-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.srv-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #1a5d9c;
}

.srv-company-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.srv-company-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-company-logo img {
    width: 100%;
    height: auto;
}

.srv-default-logo {
    font-size: 24px;
    font-weight: bold;
    color: #1a5d9c;
}

.srv-company-name {
    font-size: 18px;
    font-weight: 500;
}

.srv-booking-container {
    display: flex;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.srv-booking-sidebar {
    width: 300px; 
    background-color: #f8f9fa;
    padding: 20px;
    border-right: 1px solid #eee;
}

.srv-client-info {
    text-align: center;
}

.srv-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.srv-default-avatar {
    width: 100%;
    height: 100%;
    background-color: #1a5d9c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.srv-appointment-type {
    margin-bottom: 20px;
    padding: 10px 15px;
    background-color: #f0f4fa;
    border-left: 4px solid #1a5d9c;
    font-family: 'Segoe UI', sans-serif;
	border-radius: 10px;
}

.srv-appointment-details {
    margin-top: 20px;
}

.srv-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    justify-content: center;
}

.srv-icon {
    margin-right: 8px;
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
}

.srv-icon::before {
    font-family: dashicons;
    font-size: 16px;
    line-height: 1;
}

.srv-icon-clock::before {
    content: "\f469";
}

.srv-icon-video::before {
    content: "\f126";
}

.srv-icon-arrow-left::before {
    content: "\f341";
}

.srv-icon-arrow-right::before {
    content: "\f345";
}

.srv-icon-check::before {
    content: "\f147";
    color: #4CAF50;
    font-size: 48px;
}

.srv-booking-form-wrapper {
    flex-grow: 1;
    padding: 20px;
}

.srv-booking-form-wrapper h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

.srv-form-content {
    min-height: 400px;
}

/* Calendar styles */
.srv-calendar-container {
    margin-bottom: 20px;
}

.srv-calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.srv-current-month {
    font-size: 16px;
    font-weight: 500;
}

.srv-prev-month, .srv-next-month {
    background: none;
    border: none;
    cursor: pointer;
    color: #1a5d9c;
    font-size: 16px;
    padding: 5px;
}

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

.srv-calendar th {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    color: #666;
}

.srv-calendar td {
    padding: 0;
    text-align: center;
    width: 14.28%;
}

.srv-calendar td button {
    width: 40px;
    height: 40px;
    margin: 2px;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.srv-calendar td button:hover {
    background-color: #e6f2ff;
}

.srv-calendar td button.srv-selected {
    background-color: #1a5d9c;
    color: white;
}

.srv-calendar td button.srv-disabled {
    color: #ccc;
    cursor: not-allowed;
}

.srv-calendar td button.srv-today {
    font-weight: bold;
    border: 2px solid #1a5d9c;
}

/* Time slots styles */
.srv-time-slots-container {
    margin-bottom: 20px;
}

.srv-time-slots-container h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
}

.srv-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.srv-time-slot {
    padding: 10px 15px;
    background-color: #f0f7ff;
    border: 1px solid #d0e5ff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
	width:75px
}

.srv-time-slot:hover {
    background-color: #e0f0ff;
}

.srv-time-slot.srv-selected {
    background-color: #1a5d9c;
    color: white;
    border-color: #1a5d9c;
}

/* Client details form */
.srv-client-details-container {
    margin-bottom: 20px;
}

.srv-client-details-container h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
}

.srv-form-group {
    margin-bottom: 15px;
}

.srv-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.srv-form-group input,
.srv-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.srv-booking-summary {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.srv-booking-summary h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
}

.srv-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.srv-form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.srv-back-btn, .srv-confirm-btn, .srv-new-appointment-btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.srv-back-btn {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    color: #333;
}

.srv-confirm-btn {
    background-color: #1a5d9c;
    border: 1px solid #1a5d9c;
    color: white;
}

.srv-new-appointment-btn {
    background-color: #1a5d9c;
    border: 1px solid #1a5d9c;
    color: white;
    margin-top: 20px;
}

.srv-back-btn:hover {
    background-color: #e0e0e0;
}

.srv-confirm-btn:hover, .srv-new-appointment-btn:hover {
    background-color: #0d4a8c;
}

/* Confirmation message */
.srv-confirmation-container {
    text-align: center;
}

.srv-confirmation-message {
    padding: 30px;
}

.srv-confirmation-message h3 {
    margin-top: 15px;
    font-size: 24px;
    color: #4CAF50;
}

.srv-confirmation-details {
    margin: 20px 0;
    text-align: left;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.srv-conf-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #eee;
}

/* Responsive design */
@media (max-width: 768px) {
    .srv-booking-container {
        flex-direction: column;
    }
    
    .srv-booking-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .srv-calendar td button {
        width: 30px;
        height: 30px;
    }
}

/* Ajouter ce CSS dans public/css/srv-public.css */

.srv-user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.srv-user-avatar img.srv-therapist-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.srv-default-avatar {
    width: 100%;
    height: 100%;
    background-color: #1a5d9c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.srv-therapist-name {
    margin-bottom: 5px;
    font-size: 16px;
}

.srv-appointment-type strong {
    display: block;
    font-size: 18px;
    color: #1a5d9c;
    font-weight: 600;
    margin-bottom: 4px;
}

.srv-appointment-type span {
    font-size: 14px;
    color: #555;
    font-style: italic;
}

#srv-service-select {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#srv-service-select:focus {
    border-color: #1a5d9c;
    box-shadow: 0 0 0 3px rgba(26, 93, 156, 0.2);
    outline: none;
}
