.ots-calendar {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ots-calendar h3 {
    text-align: center;
    font-size: 1.5em;
}

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

.ots-calendar-day {
    text-align: center;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.ots-calendar-day:hover {
    background-color: #0073aa;
    color: #fff;
}

.ots-calendar-day.ots-disabled {
    background-color: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
}

.ots-time-slot {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 20px;
    background-color: #e0f7fa;
}

.ots-time-slot:hover {
    background-color: #b2ebf2;
}

.ots-services-list {
    margin-top: 20px;
}

.ots-services-list h3 {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.ots-services-list ul {
    list-style: none;
    padding: 0;
}

.ots-service-item {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.ots-service-item:hover {
    background-color: #eef;
}

/* Kontener listy terapeutów */
.ots-therapists-list {
    max-width: 800px;
    margin: 50px auto;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ots-therapists-list h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #333;
}

/* Kontener kart terapeutów */
.ots-therapists-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Karta terapeuty */
.ots-therapist-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 200px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ots-therapist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Stylizacja linku do terapeuty */
.ots-therapist-link {
    text-decoration: none;
    font-size: 1.2em;
    color: #0073aa;
    font-weight: bold;
    transition: color 0.3s ease;
}

.ots-therapist-link:hover {
    color: #005b8c;
}

/* Informacje o następnej dostępności */
.ots-therapist-next {
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
}

.ots-user-panel {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ots-user-panel h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #333;
}

.ots-user-panel label {
    font-weight: bold;
    margin-top: 15px;
    display: block;
    color: #333;
}

.ots-user-panel input,
.ots-user-panel select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.ots-slots-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.ots-slot {
    padding: 10px 15px;
    background-color: #e0f7fa;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ots-slot:hover {
    background-color: #b2ebf2;
}

.ots-slot.active {
    background-color: #0073aa;
    color: white;
}

.ots-btn {
    display: inline-block;
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ots-btn:hover {
    background-color: #005b8c;
}

.ots-therapists-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.ots-therapist-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.ots-therapist-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.ots-therapist-appointment-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #0073aa;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.ots-therapist-appointment-button:hover {
    background-color: #005b8c;
}
.ots-schedule-container {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: auto;
    gap: 20px;
}

.ots-calendar-section, .ots-slots-section {
    width: 48%;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.ots-calendar-section h3, .ots-slots-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#ots-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

#ots-calendar div {
    text-align: center;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#ots-calendar div.selected {
    background-color: #0073aa;
    color: white;
}

#ots-calendar div:hover {
    background-color: #e1f5fe;
}

#ots-slots-container button {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#ots-slots-container button.selected {
    background-color: #0073aa;
    color: white;
}

#ots-slots-container button:hover {
    background-color: #e1f5fe;
}

#ots-submit-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

#ots-submit-button:hover {
    background-color: #005b8c;
}

.ots-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.ots-calendar-header button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ots-calendar-header button:hover {
    background-color: #005b8c;
}

.ots-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

#ots-calendar div.disabled {
    background-color: #f5f5f5;
    color: #ccc;
    pointer-events: none;
    cursor: not-allowed;
}

#ots-calendar div.selected {
    background-color: #0073aa;
    color: white;
}

#ots-calendar div:hover:not(.disabled) {
    background-color: #e1f5fe;
    cursor: pointer;
}

#ots-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ots-service-card {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f9f9f9;
}

.ots-service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ots-service-card.selected {
    background-color: #0073aa;
    color: white;
    border-color: #0073aa;
}

#ots-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7 dni w tygodniu */
    gap: 5px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#ots-calendar div {
    text-align: center;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#ots-calendar div.disabled {
    background-color: #eee;
    color: #aaa;
    cursor: not-allowed;
}

#ots-calendar div.selected {
    background-color: #0073aa;
    color: white;
    font-weight: bold;
}

/* Ogólny kontener formularza */
.ots-order-form {
    max-width: 500px;
    margin: auto;
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

/* Nagłówki */
.ots-order-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5em;
}

/* Pola formularza */
.ots-order-form .form-group {
    margin-bottom: 15px;
}

.ots-order-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

.ots-order-form input[type="text"],
.ots-order-form input[type="email"],
.ots-order-form input[type="tel"] {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

/* Pole daty i godziny (readonly) */
.ots-order-form input[readonly] {
    background: #f1f1f1;
    cursor: not-allowed;
}

/* Stylizacja dla aktywnego lub poprawnego wypełnienia */
.ots-order-form input:focus {
    border-color: #0073aa;
    outline: none;
}

/* Przycisk potwierdzenia */
.ots-order-form .btn-submit {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 1.1em;
    color: #fff;
    background: #0073aa;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.ots-order-form .btn-submit:hover {
    background: #005b8c;
}

/* Komunikaty o błędach */
.ots-order-form input:invalid {
    border-color: #e74c3c;
    background: #fef2f2;
}