:root {
    --chryma-green: #8ebf42;
    --chryma-green-dark: #6f9f2a;
    --chryma-green-soft: #edf6df;
    --chryma-border: #dbe7c7;
    --chryma-text: #475569;
    --chryma-heading: #243b12;
    --chryma-surface: #ffffff;
    --chryma-bg: #f7faf3;
}

html, body {
    min-height: 100%;
}

body.report-page {
    background: linear-gradient(180deg, #f8fbf4 0%, #eef6e3 100%);
    color: var(--chryma-text);
    font-family: Roboto, Arial, sans-serif;
}

.report-shell {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.25rem 0.75rem 6rem;
}

.report-header-card,
.report-toolbar-card,
.report-card {
    background: var(--chryma-surface);
    border: 1px solid var(--chryma-border);
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1.25rem rgba(111, 159, 42, 0.08);
}

.report-header-card {
    overflow: hidden;
}

.report-header-banner {
    background: #0a0a0a;
    color: #fff;
}

.report-brand-banner {
    background: #050505;
    padding: 0.65rem;
}

.report-banner-logo {
    display: block;
    width: 100%;
    height: auto;
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 0.7rem;
}

.report-header-copy {
    padding: 1rem 1.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(142,191,66,1) 0%, rgba(111,159,42,1) 100%);
}

.report-title {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.report-subtitle {
    margin: 0.25rem 0 0;
    opacity: 0.95;
    font-size: 0.95rem;
}

.report-toolbar-card,
.report-card {
    margin-top: 1rem;
    padding: 1rem;
}

.report-toolbar-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto;
    gap: 1rem;
    align-items: end;
}

.report-search-label,
.report-section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--chryma-green-dark);
    margin-bottom: 0.4rem;
}

.report-search-group {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.report-search-group .form-control {
    min-height: 46px;
    border-radius: 0.8rem;
    border-color: var(--chryma-border);
    box-shadow: none;
}

.report-search-group .form-control:focus {
    border-color: var(--chryma-green);
    box-shadow: 0 0 0 0.2rem rgba(142, 191, 66, 0.15);
}

.report-actions {
    display: flex;
    gap: 0.6rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.btn-report-primary {
    background: var(--chryma-green);
    border-color: var(--chryma-green);
    color: #fff;
}

.btn-report-primary:hover,
.btn-report-primary:focus {
    background: var(--chryma-green-dark);
    border-color: var(--chryma-green-dark);
    color: #fff;
}

.btn-report-outline {
    color: var(--chryma-green-dark);
    border-color: var(--chryma-border);
    background: #fff;
}

.btn-report-outline:hover,
.btn-report-outline:focus {
    color: var(--chryma-green-dark);
    border-color: var(--chryma-green);
    background: var(--chryma-green-soft);
}

.report-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.report-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--chryma-green-soft);
    border: 1px solid var(--chryma-border);
    color: var(--chryma-heading);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.report-card-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
}

.report-card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--chryma-heading);
}

.report-card-subtitle {
    font-size: 0.9rem;
    color: #64748b;
}

.report-table-wrap {
    border: 1px solid #e9efe0;
    border-radius: 0.9rem;
    overflow: hidden;
    background: #fff;
}

.report-table {
    margin-bottom: 0;
    width: 100%;
    table-layout: fixed;
    font-size: 0.92rem;
}

.report-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #f4f8ec;
    color: var(--chryma-heading);
    font-weight: 700;
    white-space: nowrap;
    border-bottom: 1px solid #dce7cb;
}

.report-table tbody td {
    vertical-align: middle;
}

.report-table.report-table-striped tbody tr:nth-child(odd):not(.report-empty):not(.average-age-summary-row):not(.till2-summary-row):not(.report-row-today) > td {
    background-color: #ffffff;
}

.report-table.report-table-striped tbody tr:nth-child(even):not(.report-empty):not(.average-age-summary-row):not(.till2-summary-row):not(.report-row-today) > td {
    background-color: #f8fbf3;
}

.report-table.report-table-striped tbody tr.report-row:hover:not(.report-row-today) > td {
    background-color: #eef6df;
}

.report-table tbody tr.report-row {
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.report-table tbody tr.report-row:hover {
    background-color: #f8fbeF;
}

.report-table tbody tr.report-row-today > td {
    background-color: #fff7d6 !important;
}

.report-table .report-col-id,
.report-table .report-col-date,
.report-table .report-col-dateTime {
    white-space: nowrap;
}

.report-table td.report-col-date,
.report-table td.report-col-dateTime,
.report-table th.report-col-date,
.report-table th.report-col-dateTime {
    text-align: right;
}

.report-table .report-col-id-head,
.report-table .report-col-id-cell,
.report-table .report-col-date-head,
.report-table .report-col-date-cell,
.report-table .report-col-dateTime-head,
.report-table .report-col-dateTime-cell,
.report-table .report-col-dod-head,
.report-table .report-col-dod-cell {
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.report-table .report-col-name-head,
.report-table .report-col-name-cell {
    text-align: left;
    white-space: nowrap;
}

.report-table .report-col-id-head {
    text-align: right;
}

.report-empty {
    padding: 2rem 1rem;
    text-align: center;
    color: #64748b;
}

.report-fixed-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(142,191,66,0.18);
    box-shadow: 0 -0.4rem 1.2rem rgba(15, 23, 42, 0.06);
}

.report-fixed-actions-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.9rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.report-fixed-actions-text {
    font-size: 0.9rem;
    color: #64748b;
}

.report-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.35);
}

.report-overlay-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 280px;
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    text-align: center;
    box-shadow: 0 1rem 2rem rgba(15, 23, 42, 0.16);
}

.report-overlay-spinner {
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 0.8rem;
}

.report-overlay-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--chryma-heading);
    margin-bottom: 0.3rem;
}

.report-overlay-text {
    font-size: 0.92rem;
    color: #64748b;
    margin: 0;
}

@media (max-width: 991.98px) {
    .report-toolbar-grid {
        grid-template-columns: 1fr;
    }

    .report-actions {
        justify-content: flex-start;
    }
}


@media (max-width: 767.98px) {
    .report-card-heading-row {
        align-items: flex-start;
        margin-bottom: 0.4rem;
    }

    .report-shell {
        padding: 0.55rem 0.32rem 5rem;
    }

    .report-toolbar-card,
    .report-card {
        margin-top: 0.65rem;
        padding: 0.65rem;
    }

    .report-brand-banner {
        padding: 0.22rem;
    }

    .report-banner-logo {
        border-radius: 0.35rem;
    }

    .report-header-copy {
        padding: 0.72rem 0.8rem 0.8rem;
    }

    .report-title {
        font-size: 1.15rem;
    }

    .report-subtitle {
        font-size: 0.78rem;
        margin-top: 0.18rem;
    }

    .report-card-title {
        font-size: 0.95rem;
    }

    .report-card-subtitle {
        font-size: 0.74rem;
        line-height: 1.25;
    }

    .report-search-label,
    .report-section-label {
        font-size: 0.72rem;
        margin-bottom: 0.25rem;
    }

    .report-search-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
    }

    .report-search-group .form-control {
        min-height: 40px;
        padding: 0.4rem 0.55rem;
    }

    .report-search-group .btn,
    .report-actions .btn {
        width: 100%;
        padding: 0.45rem 0.55rem;
        font-size: 0.9rem;
    }

    .report-meta {
        gap: 0.35rem;
        margin-top: 0.65rem;
    }

    .report-pill {
        padding: 0.35rem 0.6rem;
        font-size: 0.76rem;
    }

    .report-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .report-table {
        min-width: 0;
        font-size: 0.60rem;
    }

    .report-table thead th,
    .report-table tbody td {
        padding-top: 0.30rem;
        padding-bottom: 0.30rem;
        padding-right: 0.10rem;
        padding-left: 0.10rem;
    }

    .report-table .report-col-id-head,
    .report-table .report-col-id-cell {
        width: 7ch;
        min-width: 7ch;
        max-width: 7ch;
        padding-right: 0.12rem !important;
    }

    .report-table .report-col-date-head,
    .report-table .report-col-date-cell {
        width: 8ch;
        min-width: 8ch;
        max-width: 8ch;
        padding-left: 0.32rem !important;
        padding-right: 0.12rem !important;
    }

    .report-table .report-col-dateTime-head,
    .report-table .report-col-dateTime-cell {
        width: 14ch;
        min-width: 14ch;
        max-width: 14ch;
        padding-left: 0.32rem !important;
        padding-right: 0.12rem !important;
    }

    .report-table .report-col-dod-head,
    .report-table .report-col-dod-cell {
        width: 8ch;
        min-width: 8ch;
        max-width: 8ch;
        padding-left: 0.32rem !important;
        padding-right: 0.12rem !important;
    }

    .report-table .report-col-name-head,
    .report-table .report-col-name-cell {
        width: auto;
        min-width: 0;
        max-width: none;
        padding-left: 0.32rem !important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .report-fixed-actions-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 0.45rem 0.35rem;
        gap: 0.35rem;
    }

    .report-fixed-actions-text {
        display: none;
    }

    .report-fixed-actions-inner .report-actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.35rem;
    }

    .report-fixed-actions-inner .report-actions .btn {
        width: 100%;
        font-size: 0.82rem;
        padding: 0.42rem 0.2rem;
    }
}

@media (max-width: 430px) {
    .report-table {
        font-size: 0.58rem;
    }

    .report-table thead th,
    .report-table tbody td {
        padding-top: 0.28rem;
        padding-bottom: 0.28rem;
        padding-right: 0.08rem;
        padding-left: 0.08rem;
    }

    .report-table .report-col-date-head,
    .report-table .report-col-date-cell,
    .report-table .report-col-dateTime-head,
    .report-table .report-col-dateTime-cell,
    .report-table .report-col-dod-head,
    .report-table .report-col-dod-cell,
    .report-table .report-col-name-head,
    .report-table .report-col-name-cell {
        padding-left: 0.28rem !important;
    }
}


.menu-shell {
    max-width: 1180px;
}

.menu-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.menu-tile {
    display: block;
    width: 100%;
    text-align: left;
    text-decoration: none;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf4 100%);
    color: var(--chryma-text);
    border: 1px solid var(--chryma-border);
    border-radius: 1rem;
    padding: 1rem 1rem 1.05rem;
    box-shadow: 0 0.45rem 1rem rgba(111, 159, 42, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.menu-tile:hover,
.menu-tile:focus {
    color: var(--chryma-heading);
    text-decoration: none;
    border-color: rgba(111, 159, 42, 0.45);
    box-shadow: 0 0.8rem 1.35rem rgba(111, 159, 42, 0.12);
    transform: translateY(-1px);
}

.menu-tile-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--chryma-heading);
    margin-bottom: 0.3rem;
}

.menu-tile-text {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.45;
}

.menu-tile-primary {
    border-color: rgba(142, 191, 66, 0.45);
    background: linear-gradient(180deg, #ffffff 0%, #f3f9e7 100%);
}

.menu-tile-danger {
    background: linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
    border-color: #f1d7d7;
}

.menu-tile-danger:hover,
.menu-tile-danger:focus {
    border-color: #e4b9b9;
}

@media (max-width: 767.98px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-toolbar .report-actions,
    .menu-toolbar .report-actions .btn {
        width: 100%;
    }
}


.report-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.report-user-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.details-shell {
    max-width: 1180px;
}

.report-card-section {
    margin-top: 1rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.detail-grid-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-item {
    min-width: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcf5 100%);
    border: 1px solid #e7efd7;
    border-radius: 0.9rem;
    padding: 0.8rem 0.9rem;
}

.detail-item-span-2 {
    grid-column: span 2;
}

.detail-label {
    display: block;
    margin-bottom: 0.32rem;
    color: var(--chryma-green-dark);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.detail-value {
    min-height: 1.35rem;
    color: var(--chryma-heading);
    font-size: 0.98rem;
    line-height: 1.42;
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.detail-value-strong {
    font-weight: 700;
}

.detail-value-multiline {
    white-space: pre-line;
}

.detail-value a,
.detail-value a:visited {
    color: var(--chryma-heading);
    text-decoration: underline;
}

.report-table-wrap-invoice {
    overflow: hidden;
}

.report-table-invoice {
    table-layout: auto;
    font-size: 0.9rem;
}

.report-table-invoice thead th {
    position: static;
    white-space: nowrap;
}

.report-table-invoice td,
.report-table-invoice th {
    vertical-align: top;
}

.report-table-invoice .invoice-col-qty {
    width: 4.5rem;
    min-width: 4.5rem;
    white-space: nowrap;
}

.report-table-invoice .invoice-col-price,
.report-table-invoice .invoice-col-total {
    width: 7rem;
    min-width: 7rem;
    white-space: nowrap;
}

.report-table-invoice .invoice-col-desc {
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}

@media (max-width: 767.98px) {
    .report-title-row {
        align-items: flex-start;
    }

    .report-user-inline {
        font-size: 0.8rem;
        padding: 0.32rem 0.65rem;
    }

    .detail-grid,
    .detail-grid-compact {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .detail-item,
    .detail-item-span-2 {
        grid-column: auto;
        padding: 0.65rem 0.72rem;
        border-radius: 0.8rem;
    }

    .detail-label {
        font-size: 0.68rem;
        margin-bottom: 0.24rem;
    }

    .detail-value {
        font-size: 0.9rem;
        line-height: 1.35;
    }

    .report-table-invoice {
        font-size: 0.78rem;
    }

    .report-table-invoice thead th,
    .report-table-invoice tbody td,
    .report-table-invoice tfoot td {
        padding: 0.38rem 0.42rem;
    }

    .report-table-invoice .invoice-col-qty {
        width: 3.3rem;
        min-width: 3.3rem;
    }

    .report-table-invoice .invoice-col-price,
    .report-table-invoice .invoice-col-total {
        width: 5.1rem;
        min-width: 5.1rem;
    }

    .report-fixed-actions-inner .report-actions {
        grid-template-columns: 1fr;
    }
}

.menu-title-row {
    flex-wrap: nowrap;
    align-items: center;
}

.menu-title-row .report-title {
    flex: 1 1 auto;
    min-width: 0;
}

.menu-user-inline {
    margin-left: auto;
    white-space: nowrap;
    max-width: 58%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.details-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.details-card-full {
    margin-top: 1rem;
}

.details-heading-row {
    margin-bottom: 0.65rem;
}

.details-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e3ecd2;
    border-radius: 0.9rem;
    overflow: hidden;
    background: #fff;
}

.details-table th,
.details-table td {
    padding: 0.72rem 0.8rem;
    border-bottom: 1px solid #edf3e4;
    vertical-align: top;
}

.details-table tr:last-child th,
.details-table tr:last-child td {
    border-bottom: none;
}

.details-table th {
    width: 34%;
    min-width: 10rem;
    background: #f7faef;
    color: var(--chryma-heading);
    font-weight: 700;
    white-space: nowrap;
}

.details-table td {
    color: var(--chryma-heading);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.details-table td a,
.details-table td a:visited {
    color: var(--chryma-heading);
    text-decoration: underline;
}

.details-table-multiline {
    white-space: pre-line;
}

.details-value-right {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.report-fixed-actions .report-actions {
    width: 100%;
}

.report-fixed-actions .report-actions .btn {
    min-width: 220px;
}

@media (max-width: 767.98px) {
    .menu-title-row {
        gap: 0.45rem;
    }

    .menu-title-row .report-title {
        font-size: 1.02rem;
    }

    .menu-user-inline {
        max-width: 56%;
        font-size: 0.72rem;
        padding: 0.22rem 0.5rem;
    }

    .details-title-row {
        align-items: center;
        gap: 0.45rem;
    }

    .details-sections-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        margin-top: 0.7rem;
    }

    .details-card-full {
        margin-top: 0.7rem;
    }

    .details-table {
        border-radius: 0.8rem;
    }

    .details-table th,
    .details-table td {
        padding: 0.56rem 0.62rem;
        font-size: 0.86rem;
    }

    .details-table th {
        width: 37%;
        min-width: 6.6rem;
        white-space: normal;
    }

    .report-fixed-actions .report-actions .btn {
        width: 100%;
        min-width: 0;
    }
}

.login-page {
    display: block;
}

.login-shell {
    max-width: 520px;
    margin: 0 auto;
    padding: 1.25rem 0.75rem 1.5rem;
}

.login-header-card {
    overflow: hidden;
}

.login-header-copy {
    padding-top: 0.9rem;
    padding-bottom: 0.95rem;
}

.login-form-card {
    margin-top: 1rem;
    padding: 1.15rem;
}

.login-form-grid {
    display: grid;
    gap: 0.95rem;
}

.login-input {
    min-height: 48px;
    border-radius: 0.8rem;
    border: 1px solid var(--chryma-border);
    box-shadow: none;
    font-size: 1rem;
}

.login-input:focus {
    border-color: var(--chryma-green);
    box-shadow: 0 0 0 0.2rem rgba(142, 191, 66, 0.15);
}

.login-remember-row {
    margin-top: -0.15rem;
}

.login-remember-row input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin-right: 0.55rem;
    accent-color: var(--chryma-green);
    vertical-align: middle;
}

.login-remember-row label {
    color: var(--chryma-heading);
    font-size: 0.95rem;
    font-weight: 500;
    vertical-align: middle;
    cursor: pointer;
}

.login-button-row {
    margin-top: 0.1rem;
}

.login-submit-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 0.85rem;
    font-size: 1rem;
    font-weight: 700;
}

.login-error-wrap {
    min-height: 1.25rem;
}

.login-error-message {
    display: block;
    color: #9f1239;
    font-size: 0.92rem;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .login-shell {
        padding: 0.55rem 0.35rem 1rem;
    }

    .login-form-card {
        margin-top: 0.65rem;
        padding: 0.8rem;
    }

    .login-input,
    .login-submit-btn {
        min-height: 44px;
    }
}


.right-align {
    text-align: right !important;
}

.details-inline-link {
    margin-left: auto;
    font-weight: 600;
    text-decoration: none;
}

.details-inline-link:hover,
.details-inline-link:focus {
    text-decoration: underline;
}

.details-images-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 0.95rem;
}

.details-image-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.details-image-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--chryma-muted);
}

.details-image-thumb {
    display: block;
    max-width: 140px;
    max-height: 180px;
    width: auto;
    height: auto;
    border: 1px solid var(--chryma-border);
    border-radius: 0.55rem;
    background: #fff;
    padding: 0.2rem;
}

.details-debug-box {
    margin: 0 0 0.85rem;
    padding: 0.75rem 0.85rem;
    border: 1px dashed var(--chryma-border);
    border-radius: 0.6rem;
    background: #fafaf7;
    font-size: 0.85rem;
    line-height: 1.45;
    word-break: break-word;
}

.report-table-invoice th.right-align,
.report-table-invoice td.right-align,
.report-table-invoice th.invoice-col-qty,
.report-table-invoice td.invoice-col-qty,
.report-table-invoice th.invoice-col-price,
.report-table-invoice td.invoice-col-price,
.report-table-invoice th.invoice-col-total,
.report-table-invoice td.invoice-col-total,
.report-table-invoice tfoot td {
    text-align: right !important;
}

.menu-user-logout,
.menu-user-logout:visited,
.menu-user-logout:hover,
.menu-user-logout:focus {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.menu-grid > div {
    min-width: 0;
}

.chryma-nav-panel {
    padding: 0.75rem;
}

.chryma-nav-panel-tight {
    margin-top: 1rem;
}

.chryma-nav-panel-inner {
    width: 100%;
}

.chryma-nav-button,
.chryma-nav-button:visited,
.chryma-nav-button:hover,
.chryma-nav-button:focus {
    display: block;
    width: 100%;
    min-width: 0;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
}

.chryma-nav-button-en,
.chryma-nav-button-sk {
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .chryma-nav-panel {
        padding: 0.65rem;
    }
}


/* Reliable alternating rows for WebForms GridView + Bootstrap. */
.report-table tr.report-row-normal > td,
.report-table tr.report-row-normal > th {
    background-color: #ffffff !important;
    --bs-table-bg: #ffffff !important;
    --bs-table-accent-bg: #ffffff !important;
}

.report-table tr.report-row-alt > td,
.report-table tr.report-row-alt > th {
    background-color: #f1f7e8 !important;
    --bs-table-bg: #f1f7e8 !important;
    --bs-table-accent-bg: #f1f7e8 !important;
}

.report-table tr.report-row-normal:hover > td,
.report-table tr.report-row-alt:hover > td {
    background-color: #e8f3d8 !important;
    --bs-table-bg: #e8f3d8 !important;
    --bs-table-accent-bg: #e8f3d8 !important;
}

.report-table tr.report-row-today > td {
    background-color: #fff7d6 !important;
    --bs-table-bg: #fff7d6 !important;
    --bs-table-accent-bg: #fff7d6 !important;
}
