html body #slp-income-page {
    position: fixed;

    top: 0;
    right: 22px;
    bottom: 0;
    left: var(--slp-income-left, 198px);

    z-index: 85000;

    overflow-y: auto;

    background: #050505;
    color: #ffffff;

    font-family: inherit;
}

html body #slp-income-page * {
    box-sizing: border-box;
}

html body #slp-income-page .income-inner {
    width: 100%;

    margin: 0;
    padding: 21px 0 60px 0;
}

html body #slp-income-page .income-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    width: 100%;

    margin-bottom: 18px;
    padding-bottom: 15px;

    border-bottom: 1px solid #252525;
}

html body #slp-income-page .income-title {
    margin: 0;
    padding: 0;

    color: #ffffff;

    font-size: 22px;
    font-weight: 800;
    line-height: 28px;
}

html body #slp-income-page .income-subtitle {
    margin-top: 3px;

    color: #7f8a9c;

    font-size: 13px;
}

html body #slp-income-page .income-header-actions {
    display: flex;
    gap: 8px;
}

html body #slp-income-page .income-btn {
    min-height: 34px;

    padding: 7px 12px;

    border: 1px solid #383838;
    border-radius: 7px;

    background: #171717;
    color: #ffffff;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;
}

html body #slp-income-page .income-btn:hover {
    background: #242424;
}

html body #slp-income-page .income-btn.primary {
    border-color: #2860d8;

    background: #2f68e8;
}

html body #slp-income-page .income-btn.primary:hover {
    background: #3974f5;
}

html body #slp-income-page .income-cards {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(170px, 1fr));

    gap: 12px;

    margin-bottom: 16px;
}

html body #slp-income-page .income-card {
    min-height: 100px;

    padding: 16px;

    border: 1px solid #292929;
    border-radius: 10px;

    background: #0a0a0a;
}

html body #slp-income-page .income-card-label {
    margin-bottom: 10px;

    color: #8b96a7;

    font-size: 11px;
}

html body #slp-income-page .income-card-value {
    color: #40e989;

    font-size: 25px;
    font-weight: 800;
    line-height: 30px;
}

html body #slp-income-page .income-card-info {
    margin-top: 5px;

    color: #778294;

    font-size: 10px;
}

html body #slp-income-page .income-box {
    width: 100%;

    padding: 16px;

    border: 1px solid #292929;
    border-radius: 10px;

    background: #080808;
}

html body #slp-income-page .income-toolbar {
    display: grid;

    grid-template-columns:
        minmax(220px, 1fr)
        150px
        180px
        auto;

    gap: 10px;

    margin-bottom: 14px;
}

html body #slp-income-page .income-input,
html body #slp-income-page .income-select {
    width: 100%;
    height: 36px;

    padding: 0 10px;

    border: 1px solid #343434;
    border-radius: 7px;

    outline: none;

    background: #111111;
    color: #ffffff;

    font-family: inherit;
    font-size: 11px;
}

html body #slp-income-page .income-input:focus,
html body #slp-income-page .income-select:focus {
    border-color: #316ee8;
}

html body #slp-income-page .income-table-wrap {
    width: 100%;

    overflow-x: auto;

    border: 1px solid #292929;
    border-radius: 9px;
}

html body #slp-income-page .income-table {
    width: 100%;

    border-collapse: collapse;

    font-size: 11px;
}

html body #slp-income-page .income-table th {
    padding: 11px 10px;

    border-bottom: 1px solid #303030;

    background: #111111;
    color: #c8d0da;

    text-align: left;
    font-weight: 700;

    white-space: nowrap;
}

html body #slp-income-page .income-table td {
    padding: 11px 10px;

    border-bottom: 1px solid #203529;

    background: #071b10;
    color: #45e98b;

    vertical-align: middle;
}

html body #slp-income-page .income-table tbody tr:last-child td {
    border-bottom: 0;
}

html body #slp-income-page .income-table tbody tr:hover td {
    background: #0a2517;
}

html body #slp-income-page .income-amount {
    font-weight: 800;

    white-space: nowrap;
}

html body #slp-income-page .income-status {
    display: inline-flex;

    align-items: center;

    padding: 4px 7px;

    border: 1px solid #126d39;
    border-radius: 999px;

    background: #082d18;
    color: #45e98b;

    font-size: 9px;
    font-weight: 800;
}

html body #slp-income-page .income-empty {
    padding: 40px 20px;

    color: #8994a4;

    text-align: center;

    font-size: 12px;
}

html body #slp-income-page .income-loading {
    padding: 45px;

    color: #8994a4;

    text-align: center;
}

html body #slp-income-page .income-result {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: 12px;
    padding: 12px 14px;

    border: 1px solid #28382e;
    border-radius: 8px;

    background: #09180f;
}

html body #slp-income-page .income-result-label {
    color: #9ba5b3;

    font-size: 11px;
}

html body #slp-income-page .income-result-value {
    color: #42e889;

    font-size: 17px;
    font-weight: 800;
}

html body .slp-income-nav-active {
    background: #1e2939 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
}

@media (max-width: 1150px) {
    html body #slp-income-page .income-cards {
        grid-template-columns:
            repeat(2, minmax(160px, 1fr));
    }

    html body #slp-income-page .income-toolbar {
        grid-template-columns:
            1fr 1fr;
    }
}

@media (max-width: 700px) {
    html body #slp-income-page {
        right: 10px;
    }

    html body #slp-income-page .income-cards {
        grid-template-columns: 1fr;
    }

    html body #slp-income-page .income-toolbar {
        grid-template-columns: 1fr;
    }

    html body #slp-income-page .income-header {
        flex-direction: column;
    }
}
