
.sales-report-for-store-page,
.sales-report-for-therapist-page {
    width: 100%;
    max-width: 600px;
    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;
}

.sales-report-for-store-page, 
.sales-report-for-store-page * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.sales-report-for-therapist-page, 
.sales-report-for-therapist-page * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.csr-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #c5a983;
    text-align: center;
    margin-top: 40px;
}

.sales-report-for-store-page-header,
.sales-report-for-therapist-page-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    width: 100%;
    margin-top: 40px;
}

.sales-report-for-store-page-month-picker-container,
.sales-report-for-store-page-therapist-picker-container,
.sales-report-for-therapist-page-month-picker-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: auto;
    position: relative;
}

.sales-report-for-store-page-month-picker-container label,
.sales-report-for-store-page-therapist-picker-container label,
.sales-report-for-therapist-page-month-picker-container label {
    font-size: 1rem;
    color: #535353;
}

.month-picker-for-store,
.therapist-picker,
.month-picker-for-therapist {
    width: 100%;
    background-color: #F5F5F5;
    border: none;
    border-radius: 1.5625rem;
    color: #535353;
    font-size: 0.875rem;
    margin-bottom: 0;
    margin-top: 10px;
    padding: 13px;
}

.month-picker-for-store option,
.therapist-picker option,
.month-picker-for-therapist option {
    text-align: center;
}

.sales-report-for-store-page-month-picker-container::before,
.sales-report-for-store-page-therapist-picker-container::before,
.sales-report-for-therapist-page-month-picker-container::before {
    border-left: 1px solid #6F6F6F;
    border-top: 1px solid #6F6F6F;
    content: "";
    display: block;
    height: 7px;
    position: absolute;
    right: 20px;
    top: 68%;
    transform: translatey(-50%) rotate(-135deg);
    width: 7px;
}

#sales-report-content {
    margin-top: 40px;
    width: 100%;
}

.sales-ledger-summary {
    width: 100%;
}

.sales-ledger-summary-header {
    font-size: 1rem;
    color: #535353;
    display: flex;
    gap: 10px;
    align-items: center;    
}

.sales-ledger-summary-header img {
    height: 20px;
    width: auto;
}

.sales-report-call-filter-label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 20px;
}

.sales-report-call-filter-text {
    color: #535353;
    font-size: 0.75rem;
}

.sales-report-call-toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.sales-report-call-toggle-switch {
    position: relative;
    width: 32px;
    height: 18px;
    background: #ccc;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.sales-report-call-toggle-switch::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.sales-report-call-toggle-input:checked + .sales-report-call-toggle-switch {
    background: #c5a983;
}

.sales-report-call-toggle-input:checked + .sales-report-call-toggle-switch::before {
    transform: translateX(14px);
}

.sales-ledger-summary-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sales-ledger-summary-list .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 5px;
    border-bottom: 1px solid #AAAAAC;
}

.sales-ledger-summary-list .summary-label {
    font-size: 0.875rem;
    color: #535353;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sales-ledger-summary-list .summary-note {
    font-size: 0.75rem;
    color: #AAAAAC;
}

.sales-ledger-summary-list .summary-value {
    font-size: 1rem;
    color: #C5A983;
    white-space: nowrap;
}

.sales-ledger-summary-list .summary-value.emphasis {
    font-size: 1rem;
}

.sales-ledger-summary-list .summary-value.small {
    font-size: 1rem;
    color: #535353;
}

/* ------------------------------------------------------------------------------ */

.sales-report-for-store-page-section-title {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #535353;
    display: flex;
    gap: 10px;
    align-items: center;
}

.sales-report-for-store-page-section-title img {
    height: 20px;
    width: auto;
}

.sales-report-search-and-sort-section {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.sales-report-search-input {
    font-size: 0.875rem;
    padding: 13px;
    border: none;
    border-radius: 25px;
    background-color: #F5F5F5;
    width: 100%;
    color: #535353;
}

.sales-report-sort-section {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.sales-report-sort-radio-group {
    display: flex;
    flex-direction: column;
    width: 100px;
}

.sales-report-sort-radio-group input[type="radio"] {
    display: none;
}

.sales-report-sort-radio-group .radio-label {
    border: 1px solid #AAAAAC;
    background-color: #ffffff;
    padding: 5px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    color: #AAAAAC;
    display: inline-block;
    text-align: center;
}

.sales-report-sort-radio-group input[type="radio"]:checked + .radio-label {
    background-color: #C5A983;
    color: #ffffff;
}

.segmented-group {
    display: inline-flex;
    gap: 0.25rem;
    background: #F5F5F5;
    border-radius: 9999px;
    padding: 6px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.06);
}

.segmented-group input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.segmented-group .segmented-item {
    padding: 8px 14px;
    border-radius: 9999px;
    font-size: 0.75rem;
    line-height: 1;
    color: #AAAAAC;
    cursor: pointer;
    user-select: none;
    transition: all .18s ease;
}

.segmented-group input[type="radio"]:checked + .segmented-item {
    background: #C5A983;
    color: #ffffff;
}

.segmented-group .segmented-item:hover {
    background: rgba(0,0,0,.04);
}



.sales-report-for-store-statement-cards {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 40px;
}

.csr-no-records-message {
    color: #AAAAAC;
    font-size: 1rem;
    text-align: center;
    padding-top: 20px;
}

.sales-report-for-store-settle-with-therapist-wrapper {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
}

select.sales-report-for-store-settle-with-therapist {
    padding: 2px 18px 2px 8px;
    height: 22px;
    line-height: 1.2;
    border-radius: 999px;
    font-size: 0.6875rem;
    border: none;
    background-color: #F5F5F5;
    color: #535353;
    cursor: pointer;
    width: 72px;
    appearance: none;
}

.sales-report-for-store-settle-with-therapist option {
    text-align: center;
}

.sales-report-for-store-settle-with-therapist-wrapper::before {
    border-left: 1px solid #6F6F6F;
    border-top: 1px solid #6F6F6F;
    content: "";
    position: absolute;
    right: 6px;
    top: 50%;
    width: 4px;
    height: 4px;
    transform: translateY(-50%) rotate(-135deg);
    pointer-events: none;
}

.csr-ledger-person--right
.sales-report-for-store-settle-with-therapist-wrapper {
    flex: 0 0 auto;
    margin-left: 0;
}

.sales-report-for-store-statement-card {
    border: 1px solid rgba(15, 23, 42, 0.10);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 300px;
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.csr-statement-card-toggle-content.accordion-toggle {
    padding: 5px;
}

.csr-statement-card-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #535353;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 10px;
}

.csr-reservation-card-reservation-id-and-category {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.csr-statement-card-reservation-id {
    color: #c5a983;
    font-size: 1rem;
}

.csr-reservation-card-reservation-category {
    font-size: 1rem;
    color: #c5a983;
}

.csr-statement-card-reservation-date {
    font-size: 0.75rem;
    color: #535353;
}

.csr-statement-card-toggle-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.csr-statement-card-user-info{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.csr-statement-card-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.csr-statement-card-user-name {
    font-size: 1rem;
    color: #535353;
    white-space: nowrap;
    overflow: hidden;
}

.csr-statement-card-accordion-message-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;

    width: fit-content;
    padding: 6px 10px;
    margin: 0 auto;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;

    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;

    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.csr-statement-card-accordion-message {
    font-size: 0.75rem;
    color: #535353;
    line-height: 1;
    white-space: nowrap;
}

.csr-statement-card-accordion-message-wrapper::after {
    content: "";
    width: 5px;
    height: 5px;

    border-right: 1.5px solid #6b7280;
    border-bottom: 1.5px solid #6b7280;

    transform: rotate(45deg);
    margin-top: -1px;
}

.csr-statement-card-accordion-content.accordion-content {
    padding: 10px;
    background: rgba(2, 6, 23, 0.02);
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.csr-statement-card-sales-total-wrapper {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
    padding-bottom: 10px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 2px rgba(15,23,42,.05);
}
  
.csr-sales-total-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
  
.csr-sales-total-label {
    font-size: 0.875rem;
    color: #C5A983;
    margin-top: 10px;
    margin-bottom: 10px;    
}
  
.csr-sales-total-amount {
    font-size: 0.875rem;
    color: #535353;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.2px;
}
  
.csr-sales-payment-breakdown {
    display: flex;
    gap: 10px;
}
  
.csr-sales-payment-item {
    flex: 1;
    background: rgba(2, 6, 23, 0.02);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.csr-sales-payment-label {
    font-size: 0.75rem;
    color: #AAAAAC;
    margin-bottom: 5px;
}

.csr-sales-payment-value {
    font-size: 0.875rem;
    color: #535353;
    font-variant-numeric: tabular-nums;
}

.csr-sales-payment-method {
    font-size: 0.875rem;
    color: #535353;
}

.csr-statement-card-therapist-meta-back-rate-wrapper {
    display: flex;
    gap: 10px;
    flex-direction: row;
    width: 100%;
    margin-top: 10px;
}
  
.csr-statement-card-therapist-meta-back-rate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 2px rgba(15,23,42,.05);
}
  
.csr-statement-card-therapist-meta-back-rate-label {
    font-size: 0.75rem;
    color: #C5A983;
    margin-bottom: 10px;
    margin-top: 10px;
}
  
.csr-statement-card-therapist-meta-back-rate-value {
    color: #535353;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.csr-statement-card-therapist-meta-back-message {
    color: #535353;
    font-size: 0.875rem;
    text-align: center;
    margin-top: 20px;
}

.csr-statement-card-sales-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 2px rgba(15,23,42,.05);
}

.csr-sales-breakdown-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.csr-sales-breakdown-label-header {
    flex: 1;
    font-size: 0.875rem;
    color: #535353;
    white-space: nowrap;
    overflow: hidden;
}

.csr-sales-breakdown-rate-header {
    width: 70px;
    text-align: right;
    font-size: 0.875rem;
    color: #C5A983;
    display: flex;
    align-items: center;
    gap: 3px;
}

.csr-sales-breakdown-amount-header {
    width: 70px;
    text-align: right;
    font-size: 0.875rem;
    color: #535353;
}

.csr-sales-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
  
.csr-sales-breakdown-row:last-child {
    border-bottom: none;
}

.csr-sales-breakdown-label {
    flex: 1;
    font-size: 0.875rem;
    color: #535353;
    white-space: nowrap;
    overflow: hidden;
}

.csr-sales-breakdown-rate {
    width: 70px;
    text-align: right;
    font-size: 0.875rem;
    color: #C5A983;
    display: flex;
    align-items: center;
    gap: 3px;
}

.csr-back-rate-input {
    text-align: center;
    font-size: 0.875rem;
    color: #C5A983;
    border: solid 1px rgba(197, 169, 131, 0.65);
    border-radius: 50px;
    width: 50px;
    background: rgba(197, 169, 131, 0.08);
}

.csr-back-rate-input.readonly {
    border: none;
    background: transparent;
}

.csr-sales-breakdown-amount {
    width: 70px;
    text-align: right;
    font-size: 0.875rem;
    color: #535353;
    font-variant-numeric: tabular-nums;
}

.csr-sales-breakdown-back-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
}

.csr-sales-back-total-label {
    flex: 1;
    font-size: 0.875rem;
    color: #535353;
    white-space: nowrap;
    overflow: hidden;
}

.csr-sales-back-total-amount {
    width: 70px;
    text-align: right;
    font-size: 0.875rem;
    color: #535353;
    font-variant-numeric: tabular-nums;
}

.csr-sales-back-total-amount-for-store {
    width: 70px;
    text-align: right;
    font-size: 0.875rem;
    color: #535353;
    font-variant-numeric: tabular-nums;
}

.csr-sales-save-button-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.csr-sales-save-button {
    border: solid 1px rgba(197, 169, 131, 0.70);
    color: #C5A983;
    width: 100px;
    height: 30px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    background: rgba(197, 169, 131, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.csr-card-pdf-button-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.csr-card-reservation-detail-button {
    color: #C5A983;
    background: rgba(197, 169, 131, 0.06);
    border: solid 1px rgba(197, 169, 131, 0.70);
    width: 100px;
    height: 30px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.csr-card-pdf-button {
    color: #C5A983;
    background: rgba(197, 169, 131, 0.06);
    border: solid 1px rgba(197, 169, 131, 0.70);
    width: 100px;
    height: 30px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.csr-statement-status-message {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #c5a983;
    font-size: 0.875rem;
    gap: 5px;
    justify-content: center;
}

.csr-dot-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }
  
.csr-dot-loader div {
    width: 4px;
    height: 4px;
    background-color: #c5a983;
    border-radius: 50%;
    animation: wave 1.2s infinite ease-in-out;
}

.csr-dot-loader div:nth-child(1) {
    animation-delay: -0.4s;
}

.csr-dot-loader div:nth-child(2) {
    animation-delay: -0.2s;
}

.csr-dot-loader div:nth-child(3) {
    animation-delay: 0s;
}

@keyframes wave {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

.csr-reservation-card-reservation-status-and-reservation-route {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.csr-statement-card-reservation-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    width: 100%;
    font-size: 0.875rem;
    color: #535353;
    padding-bottom: 10px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 2px rgba(15,23,42,.05);
}

.csr-statement-card-reservation-status-label {
    font-size: 0.875rem;
    color: #C5A983;
    margin-bottom: 10px;
    margin-top: 10px;
}

.csr-statement-card-reservation-reservation-route {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    width: 100%;
    font-size: 0.875rem;
    color: #535353;
    padding-bottom: 10px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 1px 2px rgba(15,23,42,.05);
}

.csr-statement-card-reservation-reservation-route-label {
    font-size: 0.875rem;
    color: #C5A983;
    margin-bottom: 10px;
    margin-top: 10px;
}

.sales-report-settle-filter-label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.sales-report-settle-filter-text {
    color: #535353;
    font-size: 0.75rem;
}

.sales-report-settle-toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.sales-report-settle-toggle-switch {
    position: relative;
    width: 32px;
    height: 18px;
    background: #ccc;
    border-radius: 999px;
    transition: background 0.2s ease;
}

.sales-report-settle-toggle-switch::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.sales-report-settle-toggle-input:checked + .sales-report-settle-toggle-switch {
    background: #c5a983;
}

.sales-report-settle-toggle-input:checked + .sales-report-settle-toggle-switch::before {
    transform: translateX(14px);
}

.csr-ledger-row {
    display: grid;
    grid-template-columns: 6% 14% 15% 20% 20% 25%;
    align-items: center;
    justify-items: center;
}

.csr-ledger-row--body {
    margin-top: 5px;
}

.csr-ledger-row--head {
    padding: 5px 0;
    border-bottom: 1px solid #d1d5db;
    margin-bottom: 2px;
}

.sales-report-for-store-statement-card .csr-ledger-row--head {
    display: none;
}

.sales-report-for-store-statement-card:first-child .csr-ledger-row--head {
    display: grid;
}

.csr-ledger-cell {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.csr-ledger-row--head .csr-ledger-cell {
    font-size: 0.75rem;
    color: #AAAAAC;
}

.csr-ledger-row--body .csr-ledger-cell {
    font-size: 0.75rem;
    color: #535353;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    justify-content: center;
}

.csr-ledger-id-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.csr-ledger-id-wrap .csr-statement-card-reservation-id,
.csr-ledger-id-wrap .csr-reservation-card-reservation-category {
    font-size: 0.75rem;
}

.csr-ledger-person {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.csr-ledger-person--right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 0;
}

.csr-ledger-name-link {
    display: inline-block;
    min-width: 0;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #535353;
    text-decoration: none;
}

.csr-ledger-person--right .csr-ledger-name-link {
    flex: 1 1 auto;
    min-width: 0;
}

.csr-ledger-cell--check {
    display: flex;
    align-items: center;
    justify-content: center;
}

.csr-check {
    position: relative;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.csr-check .csr-statement-select {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
}

.csr-check-ui {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    box-sizing: border-box;
    transition: all 0.15s ease;
    position: relative;
}

.csr-ledger-row--body:hover .csr-check-ui {
    border-color: #c5a983;
}

.csr-check .csr-statement-select:checked + .csr-check-ui {
    background: #c5a983;
    border-color: #c5a983;
}

.csr-check-ui::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 50%;
    left: 50%;
    margin-left: -3px;
    margin-top: -6px;
    opacity: 0;
    transition: opacity 0.12s ease;
}

.csr-check .csr-statement-select:checked + .csr-check-ui::after {
    opacity: 1;
}

.csr-check:active .csr-check-ui {
    transform: scale(0.95);
}

.csr-check .csr-statement-select:focus-visible + .csr-check-ui {
    outline: 2px solid rgba(197, 169, 131, 0.4);
    outline-offset: 2px;
}

.csr-ledger-row--head .csr-check {
    visibility: hidden;
}

.csr-selected-totals {
    width: 100%;
    background: #ffffff;
    font-size: 0.75rem;
    color: #535353;
}

.csr-selected-totals-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.csr-selected-totals-row > div {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

@media (max-width: 600px) {
  .csr-statement-card-toggle-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .csr-ledger-row {
    min-width: 600px;
  }
}