/* ============================================================
   SAMSSTC Reports UI  —  shared across all report pages
   Stack: Bootstrap 5 · ApexCharts · Tom Select · Flatpickr
   ============================================================ */
.rp-shell {
    display: flex;
    min-height: calc(100vh - 60px);
    font-size: 13px;
}

/* Sidebar */
.rp-sidebar {
    width: 214px;
    min-width: 214px;
    background: #0f1e3c;
    display: flex;
    flex-direction: column;
    transition: width .2s,min-width .2s;
    flex-shrink: 0;
    overflow: hidden;
}

.rp-sidebar.collapsed {
    width: 52px;
    min-width: 52px;
}

    .rp-sidebar.collapsed .rp-sb-brand-text,
        .rp-sidebar.collapsed .rp-nav-section,
        .rp-sidebar.collapsed .rp-nav-item .rp-nav-text,
        .rp-sidebar.collapsed .rp-admin-badge,
        .rp-sidebar.collapsed .rp-exp-label {
            display: none !important;
        }

        .rp-sidebar.collapsed .rp-nav-item {
            justify-content: center;
            padding: 10px 0;
            border-left: 2.5px solid transparent;
        }

            .rp-sidebar.collapsed .rp-nav-item.active {
                background: rgba(55,138,221,.15);
                border-left: 2.5px solid #378ADD;
            }

        .rp-sidebar.collapsed .rp-exp-row {
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 8px 4px;
        }

        .rp-sidebar.collapsed .rp-exp-btn {
            width: 36px;
            padding: 6px 0;
            justify-content: center;
        }

        .rp-sidebar.collapsed .rp-nav-divider {
            margin: 4px 8px;
        }

.rp-sb-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 16px 14px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    margin-bottom: 6px;
    flex-shrink: 0;
}

.rp-sb-brand-text {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.rp-nav-section {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    padding: 8px 16px 4px;
    white-space: nowrap;
}

.rp-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    font-size: 12px;
    color: rgba(255,255,255,.5);
    text-decoration: none !important;
    border-left: 2.5px solid transparent;
    white-space: nowrap;
    transition: all .12s;
    overflow: hidden;
}

    .rp-nav-item:hover {
        color: #fff;
        background: rgba(255,255,255,.06);
    }

    .rp-nav-item.active {
        color: #fff;
        background: rgba(55,138,221,.14);
        border-left-color: #378ADD;
        font-weight: 500;
    }

    .rp-nav-item svg {
        flex-shrink: 0;
        opacity: .55;
    }

    .rp-nav-item.active svg {
        opacity: 1;
    }

.rp-admin-badge {
    font-size: 8px;
    padding: 1px 5px;
    background: rgba(55,138,221,.3);
    color: #85B7EB;
    border-radius: 4px;
    margin-left: auto;
    white-space: nowrap;
}

.rp-nav-divider {
    border-top: 1px solid rgba(255,255,255,.07);
    margin: 8px 0;
}

.rp-exp-row {
    display: flex;
    gap: 5px;
    padding: 4px 12px 12px;
}

.rp-exp-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    justify-content: center;
    padding: 6px 4px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;
    font-size: 10px;
    color: rgba(255,255,255,.5);
    cursor: pointer;
    transition: all .12s;
    white-space: nowrap;
}

    .rp-exp-btn:hover {
        background: rgba(255,255,255,.12);
        color: #fff;
    }

/* Main */
.rp-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.rp-topbar {
    background: #fff;
    border-bottom: .5px solid #e4e6ea;
    padding: 10px 20px;
    display: flex;
    flex-flow:column;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.rp-topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rp-toggle-btn {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: .5px solid #e4e6ea;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    flex-shrink: 0;
    transition: background .12s;
}

    .rp-toggle-btn:hover {
        background: #f4f5f7;
    }

.rp-page-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
}

.rp-page-crumb {
    font-size: 10px;
    color: #aaa;
    margin-top: 1px;
}

/* Filters */
.rp-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    position:relative;
}

.rp-filters .ts-control {
    
    border: .5px solid #e0e3e8 !important;
    border-radius: 7px !important;
    background: #f7f8fb !important;
    font-size: 11px !important;
    min-height: 34px !important;
    padding: 4px 8px !important;
    box-shadow: none !important;
}

.rp-filters .ts-wrapper:not(.form-control,.form-select) {
    flex: 1;
}

.rp-filters .ts-control:focus-within {
    border-color: #378ADD !important;
    background: #fff !important;
}

.rp-filters .ts-dropdown {
    border: .5px solid #e0e3e8 !important;
    border-radius: 8px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,.09) !important;
    font-size: 11px !important;
}

.rp-date-input {
    border: .5px solid #e0e3e8;
    border-radius: 7px;
    background: #f7f8fb;
    font-size: 11px;
    height: 34px;
    padding: 0 10px;
    color: #1a1a1a;
    width: 210px;
    cursor: pointer;
    outline: none;
    transition: border-color .12s;
}

    .rp-date-input:focus {
        border-color: #378ADD;
        background: #fff;
    }

/* Body */
.rp-body {
    flex: 1;
    overflow-y: auto;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rp-section-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .9px;
    text-transform: uppercase;
    color: #b8bcc4;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: -2px;
}

    .rp-section-label::after {
        content: '';
        flex: 1;
        height: .5px;
        background: #e4e6ea;
    }

/* KPI cards */
.rp-kpi-row {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 10px;
}

.rp-kpi-row.c5 {
    grid-template-columns: repeat(5,minmax(0,1fr));
}

.rp-kc {
    background: #fff;
    border: .5px solid #e4e6ea;
    border-radius: 10px;
    padding: 12px;
    position: relative;
    overflow: hidden;
}

    .rp-kc::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: 10px 10px 0 0;
    }

.kc-blue::before {
    background: #185FA5;
}

.kc-teal::before {
    background: #1D9E75;
}

.kc-amber::before {
    background: #EF9F27;
}

.kc-purple::before {
    background: #7F77DD;
}

.kc-red::before {
    background: #E24B4A;
}

.kc-navy::before {
    background: #0f1e3c;
}

.rp-kc-label {
    display:flex;
    align-items:start;
    gap:10px;
    font-size: 12px;
    color: #1a1a1a;
    font-weight: 500;
    margin-bottom: 6px;
}

.rp-kc-label-icon{
    font-size: 10px;
    color: #999;
    font-weight: 500;
    margin-bottom: 6px;
}

.rp-kc-value {
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
    letter-spacing: -.8px;
}

    .rp-kc-value small {
        font-size: 13px;
        font-weight: 400;
        color: #999;
        margin-left: 1px;
    }

.rp-kc-delta {
    font-size: 10px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .rp-kc-delta.up {
        color: #0a7c5c;
    }

    .rp-kc-delta.down {
        color: #b42020;
    }

    .rp-kc-delta.neu {
        color: #aaa;
    }

/* Cards */
.rp-card {
    background: #fff;
    border: .5px solid #e4e6ea;
    border-radius: 10px;
    overflow: hidden;
}

.rp-card-head {
    padding: 12px 16px;
    border-bottom: .5px solid #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.rp-card-title {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rp-card-sub {
    font-size: 10.5px;
    color: #666;
    font-weight: 400;
}

.rp-card-body {
    padding: 14px 16px;
}

    .rp-card-body.p0 {
        padding: 0;
    }

/* Chart menu */
.rp-menu .dropdown-toggle::after {
    display: none;
}

.rp-menu .dropdown-toggle {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    border: .5px solid #e4e6ea;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #aaa;
    transition: background .12s;
}

    .rp-menu .dropdown-toggle:hover {
        background: #f4f5f7;
        color: #555;
    }

.rp-menu .dropdown-menu {
    font-size: 11px;
    border: .5px solid #e4e6ea;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,.09);
    min-width: 160px;
    padding: 4px;
}

.rp-menu .dropdown-item {
    border-radius: 5px;
    padding: 7px 10px;
    font-size: 11px;
    color: #444;
}

    .rp-menu .dropdown-item:hover {
        background: #f4f5f7;
    }

/* Grids */
.g2 {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 12px;
}

.g3 {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 12px;
}

.g2l {
    display: grid;
    grid-template-columns: minmax(0,1.5fr) minmax(0,1fr);
    gap: 12px;
}
.g4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.g2xl {
    display: grid;
    grid-template-columns: minmax(0,2fr) minmax(0,1fr);
    gap: 12px;
}

.g-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media(max-width:1100px) {
    .g4 {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:640px) {
    .g4 {
        grid-template-columns: 1fr;
    }
}
/* Funnel bars */
.rp-funnel-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.rp-f-label {
    font-size: 10px;
    color: #888;
    width: 84px;
    flex-shrink: 0;
    text-align: right;
}

.rp-f-track {
    flex: 1;
    background: #f2f4f7;
    border-radius: 3px;
    height: 20px;
    overflow: hidden;
}

.rp-f-bar {
    height: 100%;
    border-radius: 3px;
    display: flex;
    align-items: center;
    padding: 0 7px;
    transition: width .55s ease;
}

.rp-f-count {
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}

    .rp-f-count.dk {
        color: #0C447C;
    }

.rp-f-pct {
    font-size: 10px;
    color: #b0b4bc;
    width: 34px;
    text-align: right;
    flex-shrink: 0;
}

.rp-f-yield {
    margin-top: 10px;
    padding: 7px 10px;
    background: #f2f4f7;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .rp-f-yield span:first-child {
        font-size: 10px;
        color: #999;
    }

    .rp-f-yield span:last-child {
        font-size: 12px;
        font-weight: 600;
        color: #1a1a1a;
    }

/* Bar list */
.rp-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
}

.rp-bar-label {
    font-size: 10px;
    color: #777;
    width: 96px;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.rp-bar-track {
    flex: 1;
    background: #f2f4f7;
    border-radius: 3px;
    height: 13px;
    position: relative;
    overflow: hidden;
}

.rp-bar-fill {
    height: 100%;
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    transition: width .5s ease;
}

.rp-bar-pct {
    font-size: 10px;
    font-weight: 500;
    color: #1a1a1a;
    width: 36px;
    text-align: right;
    flex-shrink: 0;
}

/* Stat list */
.rp-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: .5px solid #f2f4f7;
}

    .rp-stat-row:last-child {
        border-bottom: none;
    }

.rp-stat-label {
    font-size: 11px;
    color: #666;
}

.rp-stat-value {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Pills */
.rp-pill {
    font-size: 9px;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 500;
    white-space: nowrap;
}

    .rp-pill.good {
        background: #E1F5EE;
        color: #085041;
    }

    .rp-pill.warn {
        background: #FAEEDA;
        color: #633806;
    }

    .rp-pill.bad {
        background: #FCEBEB;
        color: #791F1F;
    }

    .rp-pill.info {
        background: #E6F1FB;
        color: #0C447C;
    }

    .rp-pill.neu {
        background: #f2f4f7;
        color: #666;
    }

/* Table */
.rp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
    table-layout: fixed;
}

    .rp-table th {
        font-size: 10px;
        font-weight: 500;
        color: #999;
        text-align: left;
        padding: 0 8px 9px;
        border-bottom: .5px solid #e4e6ea;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .rp-table td {
        padding: 8px;
        border-bottom: .5px solid #f2f4f7;
        color: #1a1a1a;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .rp-table tr:last-child td {
        border-bottom: none;
    }

    .rp-table tr:hover td {
        background: #fafbfc;
    }

/* Leaderboard */
.rp-ldr-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: .5px solid #f2f4f7;
}

    .rp-ldr-row:last-child {
        border-bottom: none;
    }

.rp-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #E6F1FB;
    color: #0C447C;
    font-size: 9px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rp-rank {
    font-size: 10px;
    color: #ccc;
    width: 16px;
    flex-shrink: 0;
}

.rp-ldr-name {
    font-size: 11px;
    color: #444;
    flex: 1;
    margin: 0 8px;
}

.rp-ldr-val {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Insights */
.rp-insight {
    padding: 11px 13px;
    border-radius: 8px;
    border-left: 3px solid;
}

    .rp-insight.warn {
        background: #FEF9EC;
        border-left-color: #EF9F27;
    }

    .rp-insight.good {
        background: #EAF7F2;
        border-left-color: #1D9E75;
    }

    .rp-insight.info {
        background: #EDF4FD;
        border-left-color: #185FA5;
    }

.rp-insight-title {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 3px;
}

.rp-insight.warn .rp-insight-title {
    color: #633806;
}

.rp-insight.good .rp-insight-title {
    color: #085041;
}

.rp-insight.info .rp-insight-title {
    color: #0C447C;
}

.rp-insight-text {
    font-size: 10px;
    line-height: 1.55;
}

.rp-insight.warn .rp-insight-text {
    color: #854F0B;
}

.rp-insight.good .rp-insight-text {
    color: #0F6E56;
}

.rp-insight.info .rp-insight-text {
    color: #185FA5;
}

/* ApexCharts */
.apexcharts-toolbar {
    display: none !important;
}

.apexcharts-tooltip {
    border: .5px solid #e4e6ea !important;
    border-radius: 8px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,.09) !important;
    font-size: 11px !important;
}

.apexcharts-legend-text {
    font-size: 11px !important;
}

/* Responsive */
@media(max-width:1100px) {
    .rp-kpi-row {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .rp-kpi-row.c5 {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }

    .g2xl, .g2l {
        grid-template-columns: 1fr;
    }

    .g3 {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media(max-width:768px) {
    .rp-sidebar {
        width: 52px;
        min-width: 52px;
    }

    .rp-sb-brand-text, .rp-nav-section {
        display: none;
    }

    .rp-nav-item {
        justify-content: center;
        padding: 10px 0;
    }

    .g2, .g3, .g2l, .g2xl {
        grid-template-columns: 1fr;
    }

    .rp-kpi-row {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .rp-date-input {
        width: 150px;
    }
}



/*==============================
    FLATPICKR CUSTOM CSS
==============================*/

.rp-dropdown {
    position: absolute;
    display: none;
    top: 40px;
    right: 0;
    background-color: #fff;
    z-index: 999;
    border-radius: 10px;
    width: 700px;
    max-width: 100%;
    overflow: hidden;
    box-sizing:border-box;
    box-shadow: 0 2px 8px 1px rgba(64,60,67,.24);
}

.rp-dropdown.open {
    display:grid;
    grid-template-columns:1fr 115px;
}

.rp-trigger .rp-input {
    border:.5px solid #e2e6f0;
    border-radius: 7px !important;
    background: #f7f8fb !important;
    font-size: 11px !important;
    min-height: 34px !important;
    padding: 4px 8px !important;
    box-shadow: none !important;
    outline:none;
}

.rp-trigger .rp-input:focus-visible {
    border-color: #378ADD;
}

/*==============================
    DROPDOWN
==============================*/
.rp-content {
    width: 100%;
    overflow-x: auto;
}

.rp-content .rp-calender-holder {
    width:585px;
    padding: 10px 10px 0px 10px;
}

/*==============================
    SIDEBAR
==============================*/

.datepicker-sidebar {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-left: 1px solid #e4e6ea;
}

.datepicker-sidebar .rp-preset {
    border: none;
    width: 100%;
    padding: 13px 15px;
    background: #fff;
    color: #1a1a1a;
    text-align: left;
}

.datepicker-sidebar .rp-preset:hover {
    background-color: #eee;
}

/*==============================
    HEADER
==============================*/
.rp-header {
    text-align: center;
    padding: 5px;
    border-bottom: 1px solid #eee;
}
.rp-header .rp-title {
    font-size: 13px;
    font-weight: 700;
    margin:0px;
}

/*==============================
    CALENDAR
==============================*/
.rp-dropdown .flatpickr-calendar {
    box-shadow:none !important;
}

.rp-dropdown .flatpickr-calendar.inline {
    width: 100% !important;
}

.rp-dropdown .flatpickr-weekdays {
    width: 565px;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dayContainer{
    display: grid !important;
    grid-template-columns: repeat(7,minmax(0,1fr));
    place-items: center;
    min-width:unset;
    max-width:unset;
    width:unset;
}


.flatpickr-weekdays .flatpickr-weekdaycontainer {
    display: grid !important;
    grid-template-columns: repeat(7,minmax(0,1fr));
    place-items: center;
}

.rp-dropdown .flatpickr-days {
    position:relative;
    width: 565px !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.flatpickr-days > div:first-child {
    position: relative;
}

.flatpickr-days::after {
    content: "";
    position: absolute;
    left: calc(50%);
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ddd;
}

.flatpickr-day {
    width: 32px;
    max-width: 32px;
    height: 30px;
    line-height: 30px;
}
/*==============================
    FOOTER
==============================*/
.rp-footer {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: auto;
    gap: 15px;
    margin-top:2px;
    border-top:1px solid #eee;
}

.rp-actions {
    display: flex;
    gap: 8px;
}

/* Horizontal hiring funnel */
.rp-fg {
    display: flex;
    align-items: flex-end;
    gap: 0;
    border-bottom: 0.5px solid #e8eaed;
    padding-bottom: 12px;
}

.rp-fc {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.rp-farr {
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    color: #aaa;
    font-size: 13px;
    flex-shrink: 0;
    align-self: flex-end;
    margin-bottom: 26px;
}

.rp-fl {
    font-size: 10.5px;
    color: #888;
    margin-bottom: 3px;
    text-align: center;
    white-space: nowrap;
}

.rp-fn {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
}

.rp-fp {
    font-size: 10px;
    color: #aaa;
    margin-bottom: 8px;
    text-align: center;
}

.rp-fb {
    width: 38px;
    border-radius: 3px 3px 0 0;
}

.rp-cr {
    display: flex;
    margin-top: 8px;
}

.rp-cc {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rp-ca {
    flex-shrink: 0;
    width: 14px;
}

.rp-cl {
    font-size: 9.5px;
    color: #bbb;
    margin-bottom: 1px;
}

.rp-cv {
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.rp-trend-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 10px 16px 14px;
    border-top: 0.5px solid #f0f2f5;
    margin-top: 4px;
}

.rp-trend-label {
    font-size: 10px;
    color: #999;
    margin-bottom: 2px;
}

.rp-trend-total {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1;
}


/* Summary list rows inside cards */
.rp-sum-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    border-bottom: 0.5px solid #f5f5f5;
    font-size: 12px;
}

    .rp-sum-row:last-child {
        border-bottom: none;
    }

.rp-sum-name {
    color: #1a1a1a;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 8px;
}

.rp-sum-bar-wrap {
    flex: 1;
    height: 4px;
    background: #f0f2f5;
    border-radius: 2px;
    margin-right: 8px;
    overflow: hidden;
}

.rp-sum-bar {
    height: 100%;
    border-radius: 2px;
    background: #185FA5;
}

.rp-sum-val {
    font-size: 11px;
    font-weight: 500;
    color: #1a1a1a;
    white-space: nowrap;
    min-width: 36px;
    text-align: right;
}

.rp-sum-badge {
    font-size: 10px;
    font-weight: 500;
    padding: 2px 7px;
    border-radius: 20px;
    white-space: nowrap;
}

    .rp-sum-badge.good {
        background: #EAF7F2;
        color: #0a7c5c;
    }

    .rp-sum-badge.warn {
        background: #FEF3E0;
        color: #8a5200;
    }

    .rp-sum-badge.bad {
        background: #FCEBEB;
        color: #b42020;
    }

/* Card footer link */
.rp-card-foot {
    padding: 8px 14px;
    border-top: 0.5px solid #f0f2f5;
}

    .rp-card-foot a {
        font-size: 11px;
        color: #185FA5;
        text-decoration: none;
    }

        .rp-card-foot a:hover {
            text-decoration: underline;
        }

.rp-empty-state {
    text-align: center;
    padding: 30px 20px !important;
}

.rp-empty-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.rp-empty-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.rp-empty-text {
    font-size: 11px;
    color: #999;
}