.content-therapists {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.therapist-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.therapist-list .no-therapist {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    font-size: 18px;
    color: #4D4D4D;
}

.therapist-list .therapist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 20px 0;
    border-bottom: 1px solid #AAAAAA;
}

.therapist-list .therapist-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.therapist-list .therapist-avatar {
    width: 140px;
    height: auto;
    object-fit: cover;
}

.therapist-list .details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.therapist-list .details .info {
    display: flex;
    flex-direction: row;
}

.therapist-list .details .info .label {
    font-weight: 400;
    border: none;
    font-size: 10px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 5px;
    opacity: 0.44;
    white-space: nowrap;
    width: fit-content;
}

.therapist-list .details .info .label.today {
    background: rgb(255, 47, 146, 0.44);
    color: #D50024;
}

.therapist-list .details .info .label.next-day,
.therapist-list .details .info .label.not-calendar {
    background: rgba(27, 124, 214, 0.44);
    color: #030303;
}

.therapist-list .details .info .label.not-calendar2 {
    background: rgba(0, 0, 0, 0.76);
    color: white;
}

.therapist-list .details .info .name {
    font-size: 14px;
    color: #666666;
}

.therapist-list .details .time {
    font-size: 12px;
    color: #4D4D4D;
}

.therapist-list .details .actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}

.therapist-list .details .actions .btn-submit {
    width: 100%;
    max-width: 168px;
    height: 40px;
}

.seacrh-therapist {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 80px;
    margin-top: 16px;
}

.input-wrapper {
    position: relative;
    display: inline-block;
    width: 172px;
    max-width: 100%;
}

.input-wrapper .search-input {
    width: 100%;
    height: 26px;
    font-size: 12px;
    border-width: 0 0 1px 0 !important;
    outline: none !important;
    padding: 8px 18px 8px 0;
}

.input-wrapper i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #888;
    cursor: pointer;
}

.search-area {
    height: 21px;
    font-size: 12px;
    border-width: 0 0 1px 0;
}

.navigation-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin: 30px 0;
}

.navigation-buttons .btn-back {
    width: 168px;
    height: 40px;
}

@media screen and (max-width: 576px) {
    .navigation-buttons {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 360px) {
    .therapist-list .therapist-avatar {
        width: 70px;
        object-fit: cover;
    }

    .therapist-list .details .info {
        flex-direction: column;
        gap: 12px;
    }

    .therapist-list .details .actions .btn-submit {
        height: 30px;
    }

    .seacrh-therapist {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

@media screen and (max-width: 236px) {
    .therapist-list .therapist-info {
        align-items: center;
        flex-direction: column;
    }
}