.therapist-reservation-management-page {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;  
    height: 100dvh;
}

.therapist-reservation-management-page, 
.therapist-reservation-management-page * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.therapist-reservation-management-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #fff;
    display: flex;
    align-items: center;
    z-index: 10;
    width: 100%;
    flex-direction: column;
    height: 50px;
}

.ctrm-date-navigation {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

#ctrm-prev-day,
#ctrm-next-day {
    position: relative;
    margin: 0 10px;
    height: 29px;
    border: solid 1px #7D40A0;
    width: 30px;
    border-radius: 5px;
}

#ctrm-prev-day::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    left: 55%;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #7D40A0;
    border-left: 1px solid #7D40A0;
    transform: translate(-50%, -50%) rotate(45deg);
}

#ctrm-next-day::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    left: 55%;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #7D40A0;
    border-left: 1px solid #7D40A0;
    transform: translate(-50%, -50%) rotate(-135deg);
}


#formatted-date-display {
    width: 150px;
    padding: 5px;
    text-align: center;
    border: 1px solid #7D40A0;
    border-radius: 4px;
    font-size: 0.75rem;
    color: #535353;
}

.ctrm-setting-button {
    width: 40px;
    height: auto;
    position: fixed;
    top: 10px;
    right: 1.25rem;
}

.ctrm-reservation-status-navigation {
    position: fixed;
    top: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 20;
    gap: 20px;
}

.ctrm-status-button {
    height: 90px;
    width: 40px;
    font-size: 0.75rem;
    background: #fff;
    color: #7D40A0;
    text-align: center;
    border: solid 1px #7D40A0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: relative;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.ctrm-count-badge {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    position: absolute;
    top: -10px;
    left: -13px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pending-reservations-count {
    background-color: #FFA000;
}

#confirmed-reservations-count {
    background-color: #1976D2;
}


.therapist-reservation-management-content {
    position: absolute;
    left: 0;
    right: 0;
    overflow-y: auto;
}

#therapist-calendar {
    width: 100%;
    height: 100%;
}

.therapist-reservation-management-content tr.fc-scrollgrid-section.fc-scrollgrid-section-header {
    display: none;
}


#ctrm-add-schedule-btn {
    position: fixed;
    bottom: 6.5rem;
    right: 1.25rem;
    padding: 4px 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 100;
    border-radius: 50%;
    background-color: rgb(233 81 142);
    border: none;
}

@media screen and (min-width: 1024px) {
    #ctrm-add-schedule-btn {
        right: calc(13.0208333333% + 1.25rem);
    }

    .ctrm-reservation-status-navigation {
        right: calc(13.0208333333%);
    }

    .therapist-reservation-management-header {
        left: unset;
        right: 13.0208333333%;
        width: min(100%, 26.875rem);
    }
    
    .ctrm-setting-button {
        right: calc(13.0208333333% + 1.25rem);
    }
    
    .therapist-reservations-page-header {
        left: unset;
        right: 13.0208333333%;
        width: min(100%, 26.875rem);
    }    
}

#ctrm-add-schedule-btn img {
    width: 25px;
    height: 25px;
    filter: invert(1);
}

.fc-event-title-container {
    color: #fff;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    max-width: 250px;
    text-align: left;
    align-items: flex-start;
    line-height: 1.2;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    font-size: 0.75rem;
    height: 40.5px;
    max-height: 40.5px;
    letter-spacing: 0.05em;
    justify-content: flex-start;
}

.fc-timegrid-event-harness.fc-timegrid-event-harness-inset.schedule-harness {
    left: 0% !important;
}

.fc-timegrid-event-harness.fc-timegrid-event-harness-inset.reservation-harness {
    left: 20% !important;
}

.reservation-event {
    position: relative;
    z-index: 2 !important;
}

.schedule-event {
    position: relative;
    z-index: 1 !important;
}

.fc-event.schedule-event {
    background-color: rgba(243, 231, 253, 0.7);
}

.fc-event.reservation-event.reservation-pending {
    background-color: #FFA000;
}

.fc-event.reservation-event.reservation-confirmed {
    background-color: #1976D2;
}

.fc-event.reservation-event.reservation-store-confirmed {
    background-color: #4CAF50;
}

/* ドラッグ中 */
.fc-timegrid .fc-v-event.fc-event-mirror,
.fc-timegrid .fc-v-event.fc-event-dragging {
  background: transparent !important;
  border: 0 !important;
  box-shadow: inset 0 0 0 2px #E9528E !important;
  --fc-event-border-color: transparent;
  opacity: 1 !important;
}

.fc-timegrid .fc-v-event.fc-event-mirror .fc-event-time,
.fc-timegrid .fc-v-event.fc-event-dragging .fc-event-time {
  display: none !important;
}

.fc .fc-highlight {
  background: transparent !important;
}

.fc-timegrid .fc-v-event.fc-event-mirror .fc-event-main,
.fc-timegrid .fc-v-event.fc-event-mirror .fc-event-main-frame,
.fc-timegrid .fc-v-event.fc-event-dragging .fc-event-main,
.fc-timegrid .fc-v-event.fc-event-dragging .fc-event-main-frame {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.fc-v-event.fc-event-selected .fc-event-resizer {
  border: solid 1px #E9528E;
}

.csrm-delete-btn::before {
  content: '×';
  font-size: 0.75rem;
  line-height: 1;
  display: block;
}

.csrm-delete-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* 長押しで選択・ドラッグ・リサイズ時に表示（ハンドルと同じタイミング） */
.fc-event.fc-event-selected .csrm-delete-btn,
.fc-event.fc-event-dragging .csrm-delete-btn,
.fc-event.fc-event-resizing .csrm-delete-btn,
.fc-timegrid .fc-v-event.fc-event-mirror .csrm-delete-btn {
  opacity: 1;
  pointer-events: auto;
}


.fc-timegrid-event {
    border: none;
    color: #fff;
    padding: 2px 2px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
}

.fc-v-event .fc-event-main{
    color: #fff;
}

.fc-event-title.fc-sticky {
    display: none;
}

.fc-timegrid-event .fc-event-time {
    display: none;
}

.fc .fc-timegrid-slot-label {
    vertical-align: middle;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: #fff;
    color: #535353;
}

.fc .fc-timegrid-now-indicator-line {
    border-color: #E9528E !important;
    border-width: 2px 0px 0px !important;
}

.fc .fc-timegrid-now-indicator-arrow {
    border-color: #E9528E;
}

.fc-direction-ltr .fc-timegrid-now-indicator-arrow {
    border-bottom-color: transparent !important;
    border-top-color: transparent !important;
    border-width: 7px 0px 7px 8px;
}

.fc .fc-timegrid-col.fc-day-today {
    background-color: #fff;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* 各ステータス予約一覧画面 */

.therapist-pending-reservations-page,
.therapist-confirmed-reservations-page,
.therapist-cancelled-reservations-page,
.therapist-store-confirmed-reservations-page {
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    background: #fff;
}

.therapist-pending-reservations-page, 
.therapist-pending-reservations-page *,
.therapist-confirmed-reservations-page, 
.therapist-confirmed-reservations-page *,
.therapist-cancelled-reservations-page, 
.therapist-cancelled-reservations-page *,
.therapist-store-confirmed-reservations-page, 
.therapist-store-confirmed-reservations-page * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.therapist-pending-reservations-page-content,
.therapist-confirmed-reservations-page-content,
.therapist-cancelled-reservations-page-content,
.therapist-store-confirmed-reservations-page-content {
    height: 100%;
    overflow-y: auto;
}

.therapist-reservations-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 10;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
}

.therapist-reservations-page-header-btn {
    width: 50px;
    font-size: 0.875rem;
    color: #535353;
    cursor: pointer;
    border: none;
}

.therapist-pending-reservations-table-content,
.therapist-confirmed-reservations-table-content,
.therapist-cancelled-reservations-table-content {
    flex: 1;
    overflow-y: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.therapist-store-confirmed-reservations-table-content {
    flex: 1;
    overflow-y: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.ctrm-no-reservations{
    text-align: center;
    font-size: 1rem;
    color: #AAAAAC;
    margin: 40px 0;
}

.ctrm-no-upcoming-reservations,
.ctrm-no-past-reservations {
    text-align: center;
    font-size: 1rem;
    color: #AAAAAC;
}

.ctrm-therapist-reservation-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ctrm-reservation-card {
    border-radius: 16px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 300px;
    max-width: 500px;
    width: 100%;
    border-top: 1px solid #AAAAAC;
    border-right: 1px solid #AAAAAC;
    border-bottom: 1px solid #AAAAAC;
    margin-bottom: 20px;
}

.ctrm-pending-reservation-card {
    border-left: 8px solid #FFA000;
}

.ctrm-confirmed-reservation-card {
    border-left: 8px solid #1976D2;
}

.ctrm-store-confirmed-reservation-card {
    border-left: 8px solid #4CAF50;
}

.ctrm-cancelled-reservation-card {
    border-left: 8px solid #AAAAAC;
}

.ctrm-reservation-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #535353;
    margin-bottom: 10px;
    border-bottom: 1px solid #AAAAAC;
    padding-bottom: 10px;
}

.ctrm-reservation-card-reservation-id {
    color: #E9528E;
    font-size: 1.125rem;
}

.ctrm-reservation-card-header-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ctrm-reservation-card-reservation-date {
    font-size: 1rem;
    color: #535353;
}

.ctrm-reservation-card-reservation-route {
    font-size: 0.75rem;
    color: #535353;
}

.ctrm-reservation-card-cancelled-reason {
    font-size: 0.75rem;
    color: #E9528E;
}


.ctrm-reservation-card-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ctrm-reservation-card-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ctrm-reservation-card-user-name {
    font-size: 1rem;
    color: #535353;
    white-space: nowrap;
    overflow: hidden;
}

.ctrm-reservation-upcoming-label,
.ctrm-reservation-history-label {
    display: inline-block;
    font-size: 1rem;
    color: #7D40A0;
    text-align: center;
    border-bottom: solid 1px #7D40A0;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* 予約詳細モーダル */

.reservation-details-for-therapist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.reservation-details-for-therapist-modal, 
.reservation-details-for-therapist-modal * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.reservation-details-for-therapist-content {
    width: 100%;
    max-width: 600px;
    height: 100dvh;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    background: #fff;
}




.ctrm-reservation-details-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.ctrm-reservation-details-content::-webkit-scrollbar {
    display: none;
}

.ctrm-reservation-details-content-top {
    background: #fff;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
}


.ctrm-reservation-details-content-bottom {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    background: #F5F5F5;
    margin-top: -108px;
    padding-top: 108px;
}

.ctrm-status-message {
    color: #535353;
    font-size: 0.875rem;
    margin-top: 10px;
}

.ctrm-user-info-wrapper {
    padding-right: 20px;
    padding-left: 20px;
}

.ctrm-user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    border: solid 1px #AAAAAC;
    background: #fff;
    border-radius: 10px;
    margin-top: 40px;
    padding: 20px;
    height: 216px;
    position: relative;
}

.ctrm-user-img-and-name {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: solid 1px #AAAAAC;
    margin-bottom: 20px;
}

.ctrm-user-img-and-name img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;

}

.ctrm-user-name {
    font-size: 1rem;
    color: #535353;
}


.ctrm-user-btn-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}


.ctrm-user-info-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
    color: #7D40A0;
    width: 70px;
}

.ctrm-user-info-button img {    
    height: 30px;
    width: auto;
}

.ctrm-datetime-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
    align-items: stretch;
}

.ctrm-start-datetime-info,
.ctrm-end-datetime-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
    border-radius: 10px;
    padding: 10px 10px;
    background: #fff;
    width: 100%;
}

.ctrm-start-datetime-info-title,
.ctrm-end-datetime-info-title {
    background: #7D40A0;
    color: #fff;
    font-size: 1rem;
    width: 90%;
    max-width: 155px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ctrm-start-datetime,
.ctrm-end-datetime {
    font-size: 1rem;
    color: #535353;
    text-align: center;
}

.ctrm-reservation-details-datetime-change-button {
    font-size: 0.875rem;
    color: #E9528D;
    background: #fff;
    width: 70px;
    height: 30px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: solid 1px #E9528E;
    border-radius: 25px;
    margin-top: 5px;
    display: none;
}

.ctrm-reservation-details-datetime-change-button img  {
    height: 20px;
    width: auto;
    margin-top: 2px;
}

.ctrm-meeting-place-info,
.ctrm-outfit-description-info,
.ctrm-schedule-adjusted-info,
.ctrm-question-info {
    border-radius: 10px;
    padding: 10px;
    background: #fff;
    width: 100%;
    margin-top: 20px;
}

.ctrm-meeting-place-title,
.ctrm-outfit-description-title,
.ctrm-schedule-adjusted-title,
.ctrm-question-title {
    font-size: 1rem;
    color: #7D40A0;
}

.ctrm-question,
.ctrm-outfit-description,
.ctrm-meeting-place,
.ctrm-schedule-adjusted {
    box-sizing: border-box;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow: hidden;
    font-size: 1rem;
    color: #535353;
}

.ctrm-receipt {
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
    margin-top: 20px;
    color: #535353;
}

.ctrm-receipt-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ctrm-receipt-item-title {
    width: 50%;
    text-align: left;
    font-size: 1rem;
    color: #7D40A0;
    white-space: nowrap;
    overflow: hidden;
}

.ctrm-receipt-item-price-and-reason {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ctrm-receipt-item-price {
    color: #535353;
    text-align: right;
    font-size: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.ctrm-receipt-item-reason {
    font-size: 0.875rem;
    color: #535353;
}

.ctrm-receipt-total {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #E1E1E1;
}

.ctrm-receipt-total-title-with-btn {
    display: flex;
    flex-direction: column;
    width: 30%;
}

.ctrm-receipt-total-title {
    font-size: 1rem;
    color: #7D40A0;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
}

.ctrm-receipt-total-price-and-explanation {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ctrm-receipt-total-price {
    color: #E9528E;
    text-align: right;
    font-size: 1.5rem;
}

.ctrm-receipt-date-explanation {
    font-size: 0.875rem;
    color: #535353;
}

.ctrm-receipt-total-explanation {    
    font-size: 0.875rem;
    color: #535353;
    text-align: left;
}

.ctrm-receipt-payment-method {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 2px solid #E1E1E1;
}

.ctrm-receipt-payment-method-title {
    font-size: 1rem;
    color: #7D40A0;
    text-align: left;
    width: 30%;
    white-space: nowrap;
    overflow: hidden;
}

.ctrm-receipt-payment-method-detail-with-btn {
    display: flex;
    flex-direction: column;
    width: 70%;
    align-items: flex-end;
}

.ctrm-receipt-payment-method-detail {
    color: #535353;
    text-align: right;
    font-size: 1rem;
}

.ctrm-course-change-button img,
.ctrm-transport-change-button img,
.ctrm-designation-change-button img,
.ctrm-option-change-button img,
.ctrm-add-price-change-button img,
.ctrm-add-price-after-start-change-button img,
.ctrm-payment-method-after-start-change-button img {
    height: 20px;
    width: auto;
    display: none;
}

.ctrm-add-course-footer {
    position: relative;
    height: 40px;
    display: none;
}

.ctrm-add-course-footer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-top: 1px dashed #CCCCCC;
    transform: translateY(-50%);
    z-index: 0;
}

.ctrm-add-course-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #E9528E;
    font-size: 0.875rem;
    border: solid 1px #E9528E;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: row;
    width: 120px;
    height: 30px;
    gap: 5px;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.ctrm-add-course-button img {
    height: 15px;
    width: auto;
}

.ctrm-add-price-footer {
    position: relative;
    height: 40px;
    display: none;
}

.ctrm-add-price-footer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-top: 1px dashed #CCCCCC;
    transform: translateY(-50%);
    z-index: 0;
}

.ctrm-add-price-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #E9528E;
    font-size: 0.875rem;
    border: solid 1px #E9528E;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: row;
    width: 120px;
    height: 30px;
    gap: 5px;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.ctrm-add-price-button img {
    height: 15px;
    width: auto;
}

.ctrm-add-price-after-start-footer {
    position: relative;
    height: 40px;
    display: none;
}

.ctrm-add-price-after-start-footer::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border-top: 1px dashed #CCCCCC;
    transform: translateY(-50%);
    z-index: 0;
}

.ctrm-add-price-after-start-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    color: #E9528E;
    font-size: 0.875rem;
    border: solid 1px #E9528E;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: row;
    width: 120px;
    height: 30px;
    gap: 5px;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.ctrm-add-price-after-start-button img {
    height: 15px;
    width: auto;
}

.ctrm-reservation-details-btn-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.ctrm-reservation-details-back-button {
    width: 150px;
    height: 40px;
    background-color: #AAAAAC;
    border: none;
    border-radius: 40px;
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    position: relative;
}

.ctrm-reservation-details-status-update-button {
    width: 150px;
    height: 40px;
    background-color: #E9528E;
    border: none;
    border-radius: 40px;
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    position: relative;
    display: none;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* リスケジュールモーダル */

.reservation-reschedule-for-therapist-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}

.reservation-reschedule-for-therapist-modal, 
.reservation-reschedule-for-therapist-modal * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.reservation-reschedule-for-therapist-content {
    background: #fff;
    width: 100%;
    max-width: 600px;
    height: 100dvh;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
}

.ctrm-reservation-details-before-datetime-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #535353;
    font-size: 0.875rem;
    margin-top: 40px;
}

.ctrm-reservation-details-before-datetime-title {
    font-size: 1rem;
    color: #7D40A0;
}

#timeslot-container {
    height: 100dvh;
    margin-top: 10px;
}

.ctrm-reservation-details-back-reschedule-button {
    width: 150px;
    height: 40px;
    background-color: #AAAAAC;
    border: none;
    border-radius: 40px;
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    position: relative;
}

.ctrm-reservation-details-reschedule-button {
    width: 150px;
    height: 40px;
    background-color: #E9528E;
    border: none;
    border-radius: 40px;
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    position: relative;
}