/* =========================================================
   POSTFIXADMIN - ROKAN HULU
   GLOBAL THEME
   ========================================================= */

body {
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    background: #f5f7fb;
}

/* Navbar */

.navbar {
    background: #0f4c81;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .10);
}

.navbar-brand img {
    height: 45px;
}

/* Panels */

.panel {
    border: none;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
}

/* Buttons */

.btn-primary {
    border-radius: 10px;
    font-weight: 600;
}

/* Tables */

.table {
    background: #fff;
}

.table tr:hover {
    background: #eef6ff;
}

/* =========================================================
   ROKAN HULU FOOTER
   ========================================================= */

.rh-footer {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;

    color: rgba(220, 235, 242, .65) !important;

    font-size: 13px;
    font-weight: 400;

    padding: 12px 20px !important;
    margin: 0 !important;
}

.rh-footer .container {
    width: 100% !important;
    padding: 0 !important;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .rh-footer {
        font-size: 12px;
        padding: 10px 15px !important;
    }

}


/* ==========================================================
   ROKAN HULU MODERN DASHBOARD V1
   ========================================================== */

.rh-dashboard {
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 0 35px;
}

/* Hero */

.rh-dashboard-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, #0f4c81 0%, #1769aa 55%, #2185c5 100%);
    box-shadow: 0 12px 35px rgba(15, 76, 129, 0.18);
}

.rh-dashboard-hero::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -70px;
    top: -100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.rh-dashboard-hero::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: 130px;
    bottom: -110px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.rh-dashboard-hero-content {
    position: relative;
    z-index: 2;
    padding: 38px 42px;
    color: #fff;
}

.rh-dashboard-eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    opacity: 0.78;
}

.rh-dashboard-hero h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.rh-dashboard-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    line-height: 1.7;
}

/* Sections */

.rh-dashboard-section {
    margin-bottom: 30px;
}

.rh-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.rh-section-heading h2 {
    margin: 0 0 4px;
    color: #17324d;
    font-size: 19px;
    font-weight: 700;
}

.rh-section-heading p {
    margin: 0;
    color: #7b8a9a;
    font-size: 13px;
}

/* Cards */

.rh-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.rh-dashboard-grid-small {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rh-dashboard-card {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 130px;
    padding: 22px;
    overflow: hidden;

    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 16px;

    color: inherit;
    text-decoration: none !important;

    box-shadow: 0 5px 18px rgba(30, 55, 80, 0.06);

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        border-color 0.18s ease;
}

.rh-dashboard-card:hover {
    transform: translateY(-3px);
    border-color: #c9ddec;
    box-shadow: 0 12px 28px rgba(30, 55, 80, 0.11);
}

.rh-dashboard-card-small {
    min-height: 110px;
    padding: 18px;
}

/* Icons */

.rh-card-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 17px;

    border-radius: 14px;

    font-size: 22px;
}

.rh-icon-domain {
    background: #e8f3ff;
}

.rh-icon-alias {
    background: #eef9f1;
}

.rh-icon-mailbox {
    background: #fff4df;
}

.rh-icon-send {
    background: #eeeaff;
}

.rh-icon-password {
    background: #edf3f8;
}

.rh-icon-log {
    background: #e9f7f7;
}

.rh-icon-logout {
    background: #fff0f0;
}

/* Content */

.rh-card-content {
    flex: 1;
    min-width: 0;
}

.rh-card-content h3 {
    margin: 0 0 5px;
    color: #183b56;
    font-size: 16px;
    font-weight: 700;
}

.rh-card-content p {
    margin: 0;
    color: #7a8b9b;
    font-size: 12px;
    line-height: 1.55;
}

/* Arrow */

.rh-card-arrow {
    flex: 0 0 auto;
    margin-left: 12px;
    color: #9aabba;
    font-size: 20px;
    transition: transform 0.18s ease;
}

.rh-dashboard-card:hover .rh-card-arrow {
    transform: translateX(4px);
    color: #1769aa;
}

.rh-dashboard-card-danger:hover {
    border-color: #f0cccc;
}

.rh-dashboard-card-danger:hover .rh-card-arrow {
    color: #c0392b;
}

/* Responsive */

@media (max-width: 900px) {

    .rh-dashboard {
        padding-left: 5px;
        padding-right: 5px;
    }

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

}

@media (max-width: 650px) {

    .rh-dashboard {
        padding: 0 0 25px;
    }

    .rh-dashboard-hero {
        border-radius: 15px;
        margin-bottom: 24px;
    }

    .rh-dashboard-hero-content {
        padding: 28px 24px;
    }

    .rh-dashboard-hero h1 {
        font-size: 26px;
    }

    .rh-dashboard-hero p {
        font-size: 13px;
    }

    .rh-dashboard-grid,
    .rh-dashboard-grid-small {
        grid-template-columns: 1fr;
    }

    .rh-dashboard-card {
        min-height: 105px;
        padding: 18px;
    }

    .rh-section-heading h2 {
        font-size: 17px;
    }

}

@media (max-width: 420px) {

    .rh-card-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        margin-right: 13px;
        font-size: 19px;
    }

    .rh-card-content h3 {
        font-size: 14px;
    }

    .rh-card-content p {
        font-size: 11px;
    }

}
/* ==========================================================
   ROKAN HULU NAVBAR POLISH V2
   Portal Administrasi Email Pemerintah Kabupaten Rokan Hulu
   ========================================================== */

.rh-navbar {
    min-height: 58px;
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    background: #0f4c81;
    box-shadow: 0 3px 14px rgba(15, 76, 129, 0.18);
    z-index: 1000;
}

.rh-navbar .container-fluid {
    min-height: 58px;
}

.rh-navbar .navbar-header {
    min-height: 58px;
}

.rh-navbar-brand {
    display: flex !important;
    align-items: center;
    min-height: 58px;
    height: 58px;
    padding: 7px 18px 7px 12px !important;
    margin: 0 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.rh-navbar-brand:hover,
.rh-navbar-brand:focus {
    color: #fff !important;
    background: rgba(255,255,255,0.06) !important;
}

.rh-navbar-brand img {
    display: block;
    width: 43px;
    height: 43px;
    margin-right: 11px;
    object-fit: contain;
}

.rh-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
}

.rh-brand-text strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.rh-brand-text small {
    display: block;
    color: rgba(255,255,255,0.78);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
}

.rh-nav-main {
    margin-left: 12px;
}

.rh-nav-main > li > a,
.rh-nav-account > li > a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 13px !important;
    color: rgba(255,255,255,0.88) !important;
    background: transparent !important;
    font-size: 12px;
    font-weight: 500;
    border: 0 !important;
    transition: background 0.18s ease, color 0.18s ease;
}

.rh-nav-main > li > a:hover,
.rh-nav-main > li > a:focus,
.rh-nav-main > li.open > a,
.rh-nav-account > li > a:hover,
.rh-nav-account > li > a:focus {
    color: #fff !important;
    background: rgba(255,255,255,0.10) !important;
}

.rh-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    margin-right: 5px;
    color: rgba(255,255,255,0.92);
    font-size: 13px;
    line-height: 1;
}

.rh-navbar .caret {
    margin-left: 5px;
    border-top-color: rgba(255,255,255,0.65);
}

.rh-navbar .open > a .caret {
    border-top-color: #fff;
}

.rh-navbar .dropdown-menu {
    min-width: 215px;
    margin-top: 0;
    padding: 7px;
    background: #fff;
    border: 1px solid #e7edf3;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 30px rgba(25, 55, 80, 0.15);
}

.rh-navbar .dropdown-menu > li > a {
    padding: 10px 13px;
    color: #35526a;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.rh-navbar .dropdown-menu > li > a:hover,
.rh-navbar .dropdown-menu > li > a:focus {
    color: #0f4c81;
    background: #edf5fc;
}

.rh-navbar .dropdown-menu > li + li {
    margin-top: 2px;
}

.rh-nav-account {
    margin-right: 4px;
}

.rh-nav-account > li > a {
    padding-left: 12px !important;
    padding-right: 12px !important;
    font-size: 11px;
}

.rh-nav-account .rh-nav-icon {
    margin-right: 4px;
}

.rh-nav-account > .rh-nav-logout > a {
    margin: 10px 8px 10px 4px;
    min-height: 38px;
    height: 38px;
    padding: 0 15px !important;
    color: #fff !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.20) !important;
    border-radius: 9px;
}

.rh-nav-account > .rh-nav-logout > a:hover,
.rh-nav-account > .rh-nav-logout > a:focus {
    color: #fff !important;
    background: rgba(220,53,69,0.88) !important;
    border-color: rgba(255,255,255,0.30) !important;
}

.rh-navbar .navbar-toggle {
    margin-top: 12px;
    margin-right: 12px;
    border-color: rgba(255,255,255,0.30);
    border-radius: 8px;
}

.rh-navbar .navbar-toggle:hover,
.rh-navbar .navbar-toggle:focus {
    background: rgba(255,255,255,0.10);
}

.rh-navbar .navbar-toggle .icon-bar {
    background: #fff;
}

@media (max-width: 1100px) {
    .rh-nav-main > li > a,
    .rh-nav-account > li > a {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .rh-nav-icon {
        margin-right: 3px;
    }

    .rh-brand-text strong {
        font-size: 12px;
    }

    .rh-brand-text small {
        font-size: 8px;
    }
}

@media (max-width: 767px) {
    .rh-navbar,
    .rh-navbar .container-fluid {
        min-height: 56px;
    }

    .rh-navbar-brand {
        height: 56px;
        min-height: 56px;
        padding-left: 10px !important;
    }

    .rh-navbar-brand img {
        width: 39px;
        height: 39px;
        margin-right: 9px;
    }

    .rh-brand-text strong {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .rh-brand-text small {
        font-size: 8px;
        letter-spacing: 0.7px;
    }

    .rh-nav-main {
        margin-left: 0;
    }

    .rh-nav-main > li > a,
    .rh-nav-account > li > a {
        min-height: 44px;
        height: 44px;
        padding: 0 16px !important;
    }

    .rh-navbar .navbar-collapse {
        max-height: calc(100vh - 56px);
        overflow-y: auto;
        background: #0f4c81;
        border-top: 1px solid rgba(255,255,255,0.10);
    }

    .rh-navbar .dropdown-menu {
        width: auto;
        margin: 0 10px 7px;
        border-radius: 10px;
        box-shadow: none;
    }

    .rh-nav-account {
        margin-right: 0;
    }

    .rh-nav-account > .rh-nav-logout > a {
        margin: 5px 16px 12px;
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .rh-brand-text strong {
        font-size: 11px;
    }

    .rh-brand-text small {
        font-size: 7px;
    }

    .rh-navbar-brand img {
        width: 36px;
        height: 36px;
    }
}

/* ==========================================================
   ROKAN HULU MAILER
   Modern Compact Pagination
   ========================================================== */

.nav_bar .rh-page-link,
.nav_bar .rh-page-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    margin: 0 3px 0 0;
    padding: 0 9px;
    border-radius: 8px;
    box-sizing: border-box;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 34px;
    text-decoration: none;
    vertical-align: middle;
    transition:
        background-color .18s ease,
        color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.nav_bar .rh-page-link {
    background: #ffffff;
    color: #2f6fae;
    border: 1px solid #d9e3ec;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.nav_bar .rh-page-link:hover {
    background: #2f6fae;
    color: #ffffff;
    border-color: #2f6fae;
    box-shadow: 0 3px 8px rgba(47, 111, 174, .20);
    transform: translateY(-1px);
}

.nav_bar .rh-page-link:focus-visible {
    outline: 2px solid rgba(47, 111, 174, .35);
    outline-offset: 2px;
}

.nav_bar .rh-page-current {
    background: #2f6fae;
    color: #ffffff;
    border: 1px solid #2f6fae;
    box-shadow: 0 3px 8px rgba(47, 111, 174, .20);
}

.nav_bar .rh-page-gap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 34px;
    margin-right: 3px;
    color: #8a99a8;
    font-size: 14px;
    font-weight: 600;
    vertical-align: middle;
}

.nav_bar .rh-page-link + .rh-page-link,
.nav_bar .rh-page-current + .rh-page-link,
.nav_bar .rh-page-link + .rh-page-current {
    margin-left: 0;
}

/* Pagination area */
.nav_bar:has(.rh-page-link) {
    padding-top: 8px;
    padding-bottom: 8px;
}

@media (max-width: 700px) {
    .nav_bar .rh-page-link,
    .nav_bar .rh-page-current {
        min-width: 32px;
        height: 32px;
        padding: 0 7px;
        font-size: 12px;
        border-radius: 7px;
    }

    .nav_bar .rh-page-gap {
        height: 32px;
        min-width: 18px;
    }
}


/* ==========================================================
   ROKAN HULU MAILER
   Professional Single-Row Pagination - FINAL
   ========================================================== */

.nav_bar .rh-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 5px;
    width: 100%;
    min-height: 42px;
    padding: 3px 0;
    box-sizing: border-box;
    white-space: nowrap;
}

.nav_bar .rh-pagination-title {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin-right: 6px;
    color: #172b3a;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.nav_bar .rh-page-link,
.nav_bar .rh-page-current,
.nav_bar .rh-page-prev,
.nav_bar .rh-page-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 34px;
    height: 34px;
    padding: 0 9px;
    margin: 0;
    box-sizing: border-box;
    border-radius: 8px;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    transition:
        background-color .18s ease,
        color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.nav_bar .rh-page-link {
    background: #ffffff;
    color: #2f6fae;
    border: 1px solid #d9e3ec;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.nav_bar .rh-page-link:hover {
    background: #2f6fae;
    color: #ffffff;
    border-color: #2f6fae;
    box-shadow: 0 3px 8px rgba(47, 111, 174, .20);
    transform: translateY(-1px);
}

.nav_bar .rh-page-current {
    background: #2f6fae;
    color: #ffffff;
    border: 1px solid #2f6fae;
    box-shadow: 0 3px 8px rgba(47, 111, 174, .20);
}

.nav_bar .rh-page-prev,
.nav_bar .rh-page-next {
    background: #f4f7fa;
    color: #42627a;
    border: 1px solid #d9e3ec;
}

.nav_bar .rh-page-prev:hover,
.nav_bar .rh-page-next:hover {
    background: #e9f1f8;
    color: #245d8e;
    border-color: #b9cfe0;
    transform: translateY(-1px);
}

.nav_bar .rh-page-disabled {
    color: #9ca8b3;
    background: #f7f8fa;
    border-color: #e5e9ed;
    opacity: .65;
    cursor: default;
}

.nav_bar .rh-page-gap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 20px;
    height: 34px;
    margin: 0;
    color: #8997a4;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.nav_bar .rh-pagination .rh-page-link:focus-visible,
.nav_bar .rh-pagination .rh-page-prev:focus-visible,
.nav_bar .rh-pagination .rh-page-next:focus-visible {
    outline: 2px solid rgba(47, 111, 174, .35);
    outline-offset: 2px;
}

@media (max-width: 700px) {
    .nav_bar .rh-pagination {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 5px;
        scrollbar-width: thin;
    }

    .nav_bar .rh-pagination-title {
        margin-right: 3px;
    }

    .nav_bar .rh-page-prev,
    .nav_bar .rh-page-next {
        padding: 0 8px;
    }

    .nav_bar .rh-page-link,
    .nav_bar .rh-page-current {
        min-width: 32px;
        height: 32px;
        padding: 0 7px;
    }

    .nav_bar .rh-page-gap {
        height: 32px;
        min-width: 16px;
    }
}


/* ==========================================================
   ROKAN HULU MAILER
   Mailbox Search - Single Row Alignment
   ========================================================== */

.nav_bar .rh-search-form {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.nav_bar .rh-search-group {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: 8px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav_bar .rh-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 22px;
    height: 38px;
    font-size: 16px;
    line-height: 1;
}

.nav_bar .rh-search-input {
    flex: 1 1 auto;
    min-width: 0;
    width: auto !important;
    height: 38px;
    margin: 0 !important;
    padding: 7px 11px;
    box-sizing: border-box;
    border: 1px solid #d9e3ec;
    border-radius: 8px;
    background: #ffffff;
    color: #263746;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    outline: none;
}

.nav_bar .rh-search-input:focus {
    border-color: #7faed0;
    box-shadow: 0 0 0 3px rgba(47, 111, 174, .10);
}

.nav_bar .rh-search-input::placeholder {
    color: #9aa8b5;
}

.nav_bar .rh-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    height: 38px;
    padding: 0 15px;
    margin: 0 !important;
    border: 1px solid #2f6fae;
    border-radius: 8px;
    background: #2f6fae;
    color: #ffffff;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        transform .18s ease;
}

.nav_bar .rh-search-button:hover {
    background: #245d8e;
    border-color: #245d8e;
    box-shadow: 0 3px 8px rgba(47, 111, 174, .20);
    transform: translateY(-1px);
}

.nav_bar .rh-search-button:focus-visible {
    outline: 2px solid rgba(47, 111, 174, .35);
    outline-offset: 2px;
}

@media (max-width: 700px) {
    .nav_bar .rh-search-group {
        gap: 5px;
    }

    .nav_bar .rh-search-icon {
        display: none;
    }

    .nav_bar .rh-search-button {
        padding: 0 11px;
    }
}


/* ==========================================================
   ROKAN HULU MAILER
   Search Alignment Fix
   ========================================================== */

/* Search berada di panel-heading, bukan .nav_bar */
.panel-heading .rh-search-form {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.panel-heading .rh-search-group {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    height: 38px !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.panel-heading .rh-search-icon {
    display: none !important;
}

.panel-heading .rh-search-input {
    display: block !important;
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 7px 11px !important;
    box-sizing: border-box !important;
    border: 1px solid #d9e3ec !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: #263746 !important;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
}

.panel-heading .rh-search-input:focus {
    border-color: #7faed0 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(47, 111, 174, .10) !important;
}

.panel-heading .rh-search-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 58px !important;
    width: 58px !important;
    min-width: 58px !important;
    max-width: 58px !important;
    height: 38px !important;
    margin: 0 !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
    border: 1px solid #2f6fae !important;
    border-radius: 8px !important;
    background: #2f6fae !important;
    color: #ffffff !important;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    cursor: pointer !important;
}

.panel-heading .rh-search-button:hover {
    background: #245d8e !important;
    border-color: #245d8e !important;
}


/* ==========================================================
   ROKAN HULU MAILER
   Pagination - Centered / Hide Mailboxes Label
   ========================================================== */

.nav_bar .rh-pagination {
    justify-content: center !important;
}

.nav_bar .rh-pagination .rh-pagination-title {
    display: none !important;
}


/* ==========================================================
   ROKAN HULU MAILER
   Pagination Full Width
   Override legacy PostfixAdmin table width="730"
   ========================================================== */

.nav_bar > table {
    width: 100% !important;
    max-width: none !important;
    table-layout: auto !important;
}

.nav_bar > table > colgroup > col:first-child {
    width: auto !important;
}

.nav_bar .rh-pagination {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}


/* =========================================================
   ROKAN HULU - MAILER OVERVIEW
   ========================================================= */

.panel-body .rh-overview-title {
    margin: 0 0 18px 0 !important;
    padding: 0 !important;
    color: #263746 !important;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

.rh-overview-stats {
    display: flex !important;
    align-items: stretch !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 920px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

.rh-overview-stat {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 14px 18px !important;
    box-sizing: border-box !important;
    border-right: 1px solid #e4ebf1 !important;
}

.rh-overview-stat:last-child {
    border-right: 0 !important;
}

.rh-overview-number {
    color: #2f6fae !important;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
    font-size: 26px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
}

.rh-overview-label {
    margin-top: 5px !important;
    color: #526576 !important;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .7px !important;
    line-height: 1.3 !important;
}

.rh-overview-sub {
    margin-top: 5px !important;
    color: #8998a5 !important;
    font-family: "Poppins", "Segoe UI", Arial, sans-serif !important;
    font-size: 10px !important;
    line-height: 1.4 !important;
}

.rh-overview-sub span {
    display: inline-block !important;
    margin: 0 4px !important;
    color: #b7c3cc !important;
}

@media (max-width: 767px) {
    .rh-overview-stats {
        display: block !important;
    }

    .rh-overview-stat {
        border-right: 0 !important;
        border-bottom: 1px solid #e4ebf1 !important;
        padding: 12px 10px !important;
    }

    .rh-overview-stat:last-child {
        border-bottom: 0 !important;
    }

    .rh-overview-number {
        font-size: 22px !important;
    }
}

