.therapist-reservation-management-page {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 1024px;
    height: 100dvh;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    border: solid 1px #333;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.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: sticky;
    top: 0;
    background-color: #f5f5f5;
    padding: 5px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    z-index: 10;
    width: 100%;
    justify-content: center;
    flex-direction: column;
}

.therapist-reservation-management-header input[type="date"] {
    padding: 5px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
}

.ctrm-reservation-status-navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 12px;
}

.ctrm-status-button {
    position: relative;
    font-size: 8px;
    font-weight: 600;
    text-align: center;
    color: #333;
    border-radius: 10px;
    text-decoration: none;
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    white-space: normal;
    word-wrap: break-word;
}

.ctrm-status-button img {
    height: 30px;
    width: 30px;
    margin-bottom: 5px;
}

.ctrm-count-badge {
    position: absolute;
    top: -3px;
    right: 0px;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 9px;
    border-radius: 50%;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    display: none;
}

#pending-reservations-count {
    background-color: rgba(0, 75, 255, 1);
}

#confirmed-reservations-count {
    background-color: rgba(153, 0, 153, 1);
}


.therapist-reservation-management-content {
    flex: 1;
    overflow-y: auto;
}

#therapist-calendar {
    width: 100%;
    height: 100%;
}

.therapist-reservation-management-content tr.fc-scrollgrid-section.fc-scrollgrid-section-header {
    display: none;
}

.ctrm-date-navigation {
    display: flex;
    align-items: center;
    margin-top: 7px;
}

.ctrm-nav-button {
    background-color: rgba(233, 81, 142);
    border: none;
    color: white;
    padding: 5px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
    height: 30px;
    display: flex;
    align-items: center;
}

#formatted-date-display {
    width: 150px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px;
}

#ctrm-add-schedule-btn {
    position: absolute;
    bottom: 20px;
    right: 10px;
    padding: 4px 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 100;
    border-radius: 50%;
    background-color: rgb(233 81 142);
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#ctrm-add-schedule-btn img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.fc-event-reservation .fc-event-title-container {
    background-color: white;
    color: black;
    padding: 0 10px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    max-width: 200px;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    line-height: 1.2;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    font-size: 12px;
    height: 40.5px;
    max-height: 40.5px;
}

.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(233, 81, 142, 0.5);
}

.fc-event.reservation-event.reservation-pending {
    background-color: rgba(0, 75, 255, 0.8);
}

.fc-event.reservation-event.reservation-confirmed {
    background-color: rgba(153, 0, 153, 0.8);
}

.fc-event.reservation-event.reservation-store-confirmed {
    background-color: #4caf50;
}

.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: #000;
}

.fc-event-title.fc-sticky {
    display: none;
}

.fc-timegrid-event .fc-event-time {
    font-size: 15px;
    background-color: white;
    color: black;
    padding: 0 10px;
    border-radius: 8px;
    display: inline-flex;
    height: 20.5px;
    max-height: 20.5px;
    max-width: 200px;
    text-align: left;
    justify-content: flex-start;
    align-items: center;
    line-height: 20.5px;
    overflow: hidden;
    white-space: nowrap;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* 各ステータス予約一覧画面 */

.therapist-pending-reservations-page,
.therapist-confirmed-reservations-page,
.therapist-cancelled-reservations-page {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 1024px;
    height: 100dvh;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    border: solid 1px #333;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.therapist-pending-reservations-page, 
.therapist-pending-reservations-page *,
.therapist-confirmed-reservations-page, 
.therapist-confirmed-reservations-page *,
.therapist-cancelled-reservations-page, 
.therapist-cancelled-reservations-page * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.therapist-pending-reservations-header,
.therapist-confirmed-reservations-header,
.therapist-cancelled-reservations-header {
    position: sticky;
    top: 0;
    background-color: #f5f5f5;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #ccc;
    z-index: 10;
    width: 100%;
    justify-content: center;
    flex-direction: column;
}

.therapist-pending-reservations-header-back-button,
.therapist-confirmed-reservations-header-back-button,
.therapist-cancelled-reservations-header-back-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-right: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.therapist-pending-reservations-header-back-button img,
.therapist-confirmed-reservations-header-back-button img,
.therapist-cancelled-reservations-header-back-button img {
    width: 25px;
    height: 25px;
}

.therapist-pending-reservations-table-content,
.therapist-confirmed-reservations-table-content,
.therapist-cancelled-reservations-table-content {
    flex: 1;
    overflow-y: auto;
}

.ctrm-no-reservations{
    text-align: center;
    font-size: 16px;
    color: #777;
    margin: 20px 0;
}

.ctrm-therapist-reservation-card-content {
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
}

.ctrm-reservation-card {
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 300px;
    max-width: 500px;
    background-color: #f9f9f9;
    width: 90%;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.ctrm-pending-reservation-card {
    border-left: 8px solid rgba(0, 75, 255, 1);
}

.ctrm-confirmed-reservation-card {
    border-left: 8px solid rgba(153, 0, 153, 1);
}

.ctrm-cancelled-reservation-card {
    border-left: 8px solid #ccc;
}

.ctrm-reservation-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.ctrm-reservation-card-reservation-id {
    font-weight: bold;
    color: rgba(233, 81, 142, 1);
}

.ctrm-reservation-card-header-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ctrm-reservation-card-reservation-date {
    font-size: 16px;
    color: #333;
}

.ctrm-reservation-card-reservation-route {
    font-size: 12px;
    color: #333;
}

.ctrm-reservation-card-cancelled-reason {
    font-size: 12px;
    color: rgb(255 0 0);
}

.ctrm-reservation-card-body {
    font-size: 16px;
    color: #333;
}


.ctrm-reservation-card-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ctrm-reservation-card-user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #ddd;
}

.ctrm-reservation-card-user-name {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.95rem;
    color: #333;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* モーダル共通 */
.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: 100;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* 予約詳細モーダル */

.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: 100;
}

.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 {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 1024px;
    height: 100dvh;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    border: solid 1px #333;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 100;
    padding: 5px;
}

.ctrm-reservation-details-content {
    flex: 1;
    overflow: auto;
    padding-top: 30px;
    padding-bottom: 10px;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.ctrm-reservation-details-page-user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.ctrm-reservation-details-page-user-info img {
    border-radius: 50%;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.ctrm-reservation-details-page-external-user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.ctrm-reservation-details-page-external-user-info img {
    border-radius: 50%;
    margin-right: 10px;
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.ctrm-reservation-details-page-external-user-name-and-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ctrm-reservation-details-page-user-name {
    font-size: 16px;
    color: #333;
}

.ctrm-reservation-details-page-external-user-phone {
    display: flex;
    flex-direction: row;
}

.ctrm-reservation-details-page-external-user-phone img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    margin-right: 2px;
    border-radius: 0%;
}

.ctrm-reservation-details-page-user-phone-number {
    font-size: 14px;
    color: #333;
}

.ctrm-reservation-details-page-user-name {
    font-size: 16px;
    color: #333;
}

.ctrm-reservation-details-page-status-message {
    background-color: #4caf5014;
    border: 2px solid #4caf50;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    font-size: 10px;
    color: #1f2937;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    margin-top: 3px;
}

.ctrm-reservation-details-page-datetime-info {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

.ctrm-reservation-details-page-start-datetime-info-with-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.ctrm-reservation-details-page-start-datetime-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    border-radius: 8px;
    padding: 10px 10px;
    background: #ffe4ec;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ctrm-reservation-details-page-end-datetime-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    background: #e6e6fa;
    border-radius: 8px;
    padding: 10px 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ctrm-reservation-details-page-start-datetime-info-title,
.ctrm-reservation-details-page-end-datetime-info-title {
    font-weight: bold;
}

.ctrm-reservation-details-page-start-datetime {
    text-align: center;
}

.ctrm-reservation-details-page-end-datetime {
    text-align: center;
}

.ctrm-reservation-details-page-meeting-place-info,
.ctrm-reservation-details-page-outfit-description-info,
.ctrm-reservation-details-page-schedule-adjusted-info,
.ctrm-reservation-details-page-question-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 5px;
    background: linear-gradient(135deg, #ffe4ec, #e6e6fa);
}

.ctrm-reservation-details-page-meeting-place-title,
.ctrm-reservation-details-page-outfit-description-title,
.ctrm-reservation-details-page-schedule-adjusted-title,
.ctrm-reservation-details-page-question-title {
    font-size: 14px;
    padding: 5px 5px;
    border-radius: 5px;
    font-weight: bold;
}

.ctrm-reservation-details-page-question,
.ctrm-reservation-details-page-outfit-description,
.ctrm-reservation-details-page-meeting-place,
.ctrm-reservation-details-page-schedule-adjusted {
    box-sizing: border-box;
    white-space: pre-wrap;
    word-wrap: break-word;
    width: 100%;
    resize: none;
    overflow: hidden;
}

.ctrm-reservation-details-page-receipt {
    padding: 20px;
    border: solid 1px #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    font-size: 12px;
}

.ctrm-receipt-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
}

.ctrm-receipt-title-with-btn {
    display: flex;
    flex-direction: column;
    width: 40%;
}

.ctrm-receipt-item-title {
    font-weight: bold;
    text-align: left;
}

.ctrm-receipt-item-price-and-reason {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ctrm-receipt-item-price {
    font-weight: bold;
    color: #333;
    text-align: right;
}

.ctrm-receipt-item-reason {
    font-size: 10px;
    color: #555;
}

.ctrm-receipt-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 2px solid #333;
    font-size: 16px;
    font-weight: bold;
}

.ctrm-receipt-total-title-with-btn {
    display: flex;
    flex-direction: column;
    width: 40%;
}

.ctrm-receipt-total-title {
    font-size: 16px;
    color: #333;
}

.ctrm-receipt-total-price-and-explanation {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ctrm-receipt-total-price {
    font-weight: bold;
    color: #333;
    text-align: right;
}

.ctrm-receipt-total-explanation {    
    font-size: 10px;
    color: #555;
    display: flex;
    flex-direction: row;
    gap: 5px
}

.ctrm-receipt-payment-method {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 2px solid #333;
}

.ctrm-receipt-payment-method-title {
    font-size: 14px;
    width: 40%;
}

.ctrm-receipt-payment-method-detail-with-btn {
    display: flex;
    flex-direction: column;
    width: 60%;
    align-items: flex-end;
}

.ctrm-receipt-payment-method-detail {
    font-size: 14px;
    color: #333;
}

.ctrm-reservation-details-btn-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.ctrm-reservation-details-back-button {
    width: 150px;
    padding: 10px;
    background-color: #6c757d;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.ctrm-reservation-details-status-update-button {
    width: 150px;
    padding: 10px;
    background-color: rgb(233, 81, 142);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: none;
}

.ctrm-reservation-details-transport-cost-change-button,
.ctrm-reservation-details-designation-price-change-button,
.ctrm-reservation-details-datetime-change-button,
.ctrm-reservation-details-add-cost-button,
.ctrm-reservation-details-option-delete-button,
.ctrm-reservation-details-add-cost-delete-button,
.ctrm-reservation-details-add-cost-after-start-datetime-delete-button,
.ctrm-reservation-details-add-cost-after-start-datetime-button,
.ctrm-payment-method-edit-button {
    width: 60px;
    padding: 3px;
    background-color: rgb(233, 81, 142);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    display: none;
    font-weight: normal;
    height: 30px;
}

.ctrm-reservation-details-page-user-info-button-container {
    display: flex;
    gap: 10px;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

.ctrm-reservation-details-page-user-info-button-container a {
    width: 100%;
}

.ctrm-reservation-details-page-user-info-button {
    padding: 10px 6px;
    font-size: 8px;
    font-weight: 600;
    text-align: center;
    color: #333;
    border-radius: 10px;
    text-decoration: none;
    width: 100%;
    max-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    white-space: normal;
    word-wrap: break-word;
    border: solid 1px #333;
    height: 60px;
}

.ctrm-reservation-details-page-user-info-button img {    
    height: 30px;
    width: 30px;
    margin-bottom: 5px;
}

.payment-method-after-start-radio-group-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-method-after-start-radio-group {
    display: flex;
    flex-direction: column;
    width: 180px;
}

.payment-method-after-start-radio-group input[type="radio"] {
    display: none;
}

.payment-method-after-start-radio-group .radio-label {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    min-width: 60px;
    transition: all 0.2s ease;
    color: #333;
    display: inline-block;
    margin: 5px;
    text-align: center;
}

.payment-method-after-start-radio-group input[type="radio"]:checked + .radio-label {
    background-color: rgb(233, 81, 142);
    color: white;
    border-color: rgb(233, 81, 142);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.ctrm-share-store-textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-top: 5px;
    resize: none;
    overflow-y: auto;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* リスケジュールモーダル */

.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: 100;
}

.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: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 1024px;
    height: 100dvh;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    border: solid 1px #333;
    overflow: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 100;
    padding: 5px;
}

#timeslot-container {
    height: 100dvh;
    margin-bottom: 0px;
}

.ctrm-reservation-details-back-reschedule-button {
    width: 150px;
    padding: 10px;
    background-color: #6c757d;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.ctrm-reservation-details-reschedule-button {
    width: 150px;
    padding: 10px;
    background-color: rgb(233, 81, 142);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.ctrm-reservation-details-before-datetime-info {
    width: 100%;
    max-width: 300px;
    margin: 5px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    border-radius: 8px;
    padding: 10px 10px;
    background: #ffe4ec;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #333;
}

.ctrm-reservation-details-before-datetime-title {
    font-weight: bold;
    color: #333;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* swalモーダル */

.csrm-swal-modal-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.csrm-swal-calendar {
    width: 100%;
}

.csrm-swal-field {
    width: 100%;
}

.csrm-swal-label {
    color: #333;
    font-weight: bold;
    margin-bottom: 4px;
    display: block;
}

.csrm-swal-select {
    width: 150px;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    color: #333;
}

.csrm-swal-result-section {
    width: 90%;
    max-width: 360px;
    background-color: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.csrm-swal-result-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
}

.csrm-swal-result-title-warning {
    font-size: 12px;
    color: #ff5454;
    margin-bottom: 10px;
}

.csrm-swal-result-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.csrm-swal-result-list li {
    margin-bottom: 4px;
    position: relative;
    font-size: 14px;
    color: #333;
}

.csrm-swal-result-time {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.csrm-swal-skipped {
    color: #a33;
}

#csrm-swal-date {
    text-align: center;
}