* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    background: #ffffff;
    color: #111111;
    font-family: Arial, sans-serif;
}

/* =========================
   SIDEBAR
========================= */

#sidebar-container {
    width: 240px;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.qrlon-sidebar {
    width: 240px;
    height: 100vh;
    background: #000000;
    border-right: 1px solid #1f1f1f;
}

.qrlon-sidebar-inner {
    width: 100%;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}





.qrlon-sidebar-item {
    display: block;
    width: 100%;
    padding: 12px 14px;
    color: #b7b7b7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 7px;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.qrlon-sidebar-item:hover {
    background: #171717;
    color: #ffffff;
}

.qrlon-sidebar-item.active {
    background: #1d1d1d;
    color: #ffffff;
}

/* =========================
   MAIN LAYOUT
========================= */

.qrlon-main {
    margin-left: 240px;
    min-height: 100vh;
    background: #ffffff;
}

/* =========================
   HEADER
========================= */

#header-container {
    width: 100%;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 900;
    background: #000000;
}

.qrlon-header {
    width: 100%;
    height: 64px;
    background: #000000;
    border-bottom: 1px solid #1f1f1f;
    display: flex;
    align-items: center;
}

.qrlon-header-inner {
    width: 100%;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
}

#page-title {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

/* =========================
   CONTENT
========================= */

.qrlon-content {
    min-height: calc(100vh - 64px);
    padding: 24px;
    background: #ffffff;
    color: #111111;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {
    #sidebar-container,
    .qrlon-sidebar {
        width: 200px;
    }

    .qrlon-main {
        margin-left: 200px;
    }

    .qrlon-content {
        padding: 16px;
    }
}

.qrlon-sidebar-brand {
    height: 54px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    user-select: none;
}

.qrlon-logo-qr {
    color: #45f59b;
}

.qrlon-logo-lon {
    color: #ffffff;
    font-weight: 600;
}

/* PAGE HEADER */

.qrlon-page-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 30px;
    margin: 0 0 8px 0;
    padding: 0;
}

.qrlon-page-title {
    margin: 0;
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}

/* END PAGE HEADER */

/* QRLON GLOBAL COMPONENTS */

/* Page header */

.qrlon-page-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 30px;
    margin: 0 0 8px 0;
    padding: 0;
}

.qrlon-page-title {
    margin: 0;
    color: #111111;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}


/* Buttons */

.qrlon-btn {
    height: 28px;
    padding: 0 10px;
    border: 0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.qrlon-btn-primary {
    background: #111111;
    color: #ffffff;
}

.qrlon-btn-primary:hover {
    background: #242424;
}


/* Tables */

.qrlon-table-wrap {
    width: 100%;
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
}

.qrlon-table {
    width: 100%;
    border-collapse: collapse;
    color: #111111;
    font-size: 14px;
}

.qrlon-table th,
.qrlon-table td {
    padding: 13px 14px;
    border-bottom: 1px solid #e8e8e8;
    text-align: left;
    white-space: nowrap;
}

.qrlon-table th {
    background: #f5f5f5;
    color: #222222;
    font-size: 13px;
    font-weight: 600;
}

.qrlon-table tbody tr:last-child td {
    border-bottom: 0;
}


/* Status */

.qrlon-status {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.qrlon-status-active {
    background: #e8f8ee;
    color: #18753c;
}

.qrlon-status-inactive {
    background: #f3f3f3;
    color: #666666;
}

.qrlon-status-error {
    background: #fdecec;
    color: #b42318;
}


/* Form */

.qrlon-input,
.qrlon-select,
.qrlon-textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    background: #ffffff;
    color: #111111;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.qrlon-input,
.qrlon-select {
    height: 36px;
    padding: 0 10px;
}

.qrlon-textarea {
    min-height: 90px;
    padding: 10px;
    resize: vertical;
}

.qrlon-input:focus,
.qrlon-select:focus,
.qrlon-textarea:focus {
    border-color: #999999;
}


/* Cards */

.qrlon-card {
    width: 100%;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 16px;
}

/* END QRLON GLOBAL COMPONENTS */

/* GLOBAL TABLE ACTION */

.qrlon-table th:last-child,
.qrlon-table td:last-child {
    width: 1%;
    text-align: right;
    white-space: nowrap;
}

/* END GLOBAL TABLE ACTION */

/* QRLON MODAL FORM */

.qrlon-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.qrlon-modal[hidden] {
    display: none;
}

.qrlon-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
}

.qrlon-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    color: #111111;
    border: 1px solid #dddddd;
    border-radius: 9px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.20);
    padding: 18px;
}

.qrlon-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.qrlon-modal-title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.qrlon-modal-close {
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #555555;
    font-size: 22px;
    line-height: 28px;
    cursor: pointer;
}

.qrlon-form-field {
    margin-bottom: 16px;
}

.qrlon-form-label {
    display: block;
    margin-bottom: 7px;
    color: #333333;
    font-size: 13px;
    font-weight: 600;
}

.qrlon-checkbox-inline,
.qrlon-checkbox-line {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #333333;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
}

.qrlon-checkbox-inline {
    height: 36px;
}

.qrlon-checkbox-inline input,
.qrlon-checkbox-line input {
    margin: 0;
}

.qrlon-form-error {
    margin-bottom: 14px;
    padding: 9px 10px;
    border-radius: 6px;
    background: #fdecec;
    color: #b42318;
    font-size: 12px;
}

.qrlon-modal-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.qrlon-btn-secondary {
    background: #eeeeee;
    color: #222222;
}

.qrlon-btn-secondary:hover {
    background: #e2e2e2;
}

/* END QRLON MODAL FORM */

/* QRLON GLOBAL INFORMATION TABLE V1 START */

/*
 * ============================================================
 * QRlon Global Information Table
 * ============================================================
 *
 * Digunakan oleh:
 *
 * - Websites
 * - Domain & DNS
 * - File Manager
 *
 * Halaman daftar informasi lain berikutnya harus memakai:
 *
 * class="qrlon-table qrlon-info-table"
 *
 * Jangan membuat ukuran table/font sendiri di CSS halaman.
 */


/* ============================================================
   PAGE INFORMATION TITLE
   ============================================================ */

html body .websites-page .qrlon-page-title,
html body .domains-page .qrlon-page-title,
html body .file-manager-page .qrlon-page-title {
    margin: 0;

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}


/* ============================================================
   TABLE BASE
   ============================================================ */

html body .qrlon-table.qrlon-info-table {
    width: 100%;

    table-layout: auto;
    border-collapse: collapse;

    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}


/* ============================================================
   HEADER + CELL
   ============================================================ */

html body .qrlon-table.qrlon-info-table th,
html body .qrlon-table.qrlon-info-table td {
    padding: 11px 14px;

    vertical-align: middle;

    font-family: inherit;
    font-size: 13px;
    line-height: 1.35;
}


html body .qrlon-table.qrlon-info-table th {
    font-weight: 600;

    white-space: nowrap;
}


html body .qrlon-table.qrlon-info-table td {
    font-weight: 400;
}


/* ============================================================
   ROW HEIGHT
   ============================================================ */

html body .qrlon-table.qrlon-info-table tbody tr {
    height: 56px;
}


/* ============================================================
   PRIMARY INFORMATION
   ============================================================ */

/*
 * Primary value cukup medium.
 * Tidak menggunakan 700 / bold berat.
 */

html body .qrlon-table.qrlon-info-table td:first-child {
    font-weight: 500;
}


html body .qrlon-table.qrlon-info-table .domain-main {
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}


/*
 * Bila renderer memakai strong/b untuk nama website,
 * turunkan menjadi medium.
 */

html body .qrlon-table.qrlon-info-table tbody strong,
html body .qrlon-table.qrlon-info-table tbody b {
    font-weight: 500;
}


/* ============================================================
   SECONDARY INFORMATION
   ============================================================ */

html body .qrlon-table.qrlon-info-table .domain-sub {
    margin-top: 3px;

    color: #777;

    font-family: inherit;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
}


/*
 * Websites alias line dibuat lewat JS.
 */

html body .websites-page
.qrlon-table.qrlon-info-table
td:first-child > div {
    margin-top: 3px !important;

    color: #777 !important;

    font-family: inherit !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;

    opacity: 1 !important;
}


/* ============================================================
   LINK
   ============================================================ */

html body .qrlon-table.qrlon-info-table a {
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
}


/* ============================================================
   BADGE
   ============================================================ */

html body .qrlon-table.qrlon-info-table .domain-badge {
    min-height: 24px;

    padding: 3px 7px;

    font-family: inherit;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
}


/* ============================================================
   BUTTON / ACTION
   ============================================================ */

html body .qrlon-table.qrlon-info-table .qrlon-btn,
html body .qrlon-table.qrlon-info-table .domain-action,
html body .qrlon-table.qrlon-info-table button {
    min-height: 30px;

    padding: 5px 9px;

    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;

    white-space: nowrap;
}


/*
 * Action selalu di sisi kanan.
 */

html body .qrlon-table.qrlon-info-table th:last-child,
html body .qrlon-table.qrlon-info-table td:last-child {
    text-align: right;

    white-space: nowrap;
}


/* ============================================================
   FILE MANAGER DOCUMENT ROOT
   ============================================================ */

html body .file-manager-page
.qrlon-table.qrlon-info-table
td:nth-child(4) {
    font-family:
        Consolas,
        Monaco,
        "Courier New",
        monospace;

    font-size: 12px;
    font-weight: 400;
    line-height: 1.35;
}


/* ============================================================
   PREVENT PAGE-LEVEL HEAVY BOLD
   ============================================================ */

html body .domains-page
.qrlon-table.qrlon-info-table
.domain-main,

html body .file-manager-page
.qrlon-table.qrlon-info-table
strong,

html body .websites-page
.qrlon-table.qrlon-info-table
strong {
    font-weight: 500;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 900px) {

    html body .qrlon-table.qrlon-info-table th,
    html body .qrlon-table.qrlon-info-table td {
        padding: 10px 12px;
    }

    html body .qrlon-table.qrlon-info-table {
        font-size: 13px;
    }
}

/* QRLON GLOBAL INFORMATION TABLE V1 END */

/* =========================
   QRLON_SIDEBAR_LOGOUT
========================= */

.qrlon-sidebar-inner {
    height: 100%;
    box-sizing: border-box;
}

.qrlon-sidebar-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #1f1f1f;
}

.qrlon-sidebar-logout-form {
    margin: 0;
    width: 100%;
}

.qrlon-sidebar-logout {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    min-height: 44px;

    padding: 11px 14px;

    border: 0;
    border-radius: 8px;

    background: transparent;
    color: #b7b7b7;

    font: inherit;
    font-size: 14px;
    text-align: left;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.qrlon-sidebar-logout:hover {
    background: #261313;
    color: #ff7676;
}

.qrlon-sidebar-logout:focus-visible {
    outline: 2px solid #ff7676;
    outline-offset: 2px;
}

/* =========================================================
   QRLON_HEADER_USER_BRAND_STYLE_V1
   ========================================================= */

.qrlon-header-inner {
    justify-content: space-between;
    gap: 20px;
}

.qrlon-header-brand {
    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 9px;

    min-width: 0;

    color: #ffffff;
}

.qrlon-header-brand-logo {
    display: block;

    width: auto;
    height: 28px;

    max-width: 96px;

    object-fit: contain;
    object-position: right center;
}

.qrlon-header-brand-copy {
    display: flex;
    flex-direction: column;

    align-items: flex-end;

    min-width: 0;

    line-height: 1.1;
}

.qrlon-header-brand-copy strong {
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .2px;
}

.qrlon-header-brand-copy span {
    margin-top: 3px;

    color: #8f8f8f;

    font-size: 9px;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   Current logged-in user
   footer sidebar - aligned right
   --------------------------------------------------------- */

.qrlon-current-user {
    width: 100%;

    margin-bottom: 10px;
    padding: 3px 2px 10px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 9px;

    box-sizing: border-box;
}

.qrlon-current-user[hidden] {
    display: none !important;
}

.qrlon-current-user-copy {
    min-width: 0;
    flex: 1;

    text-align: right;
}

.qrlon-current-user-copy strong {
    display: block;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #ffffff;

    font-size: 10px;
    font-weight: 600;
}

.qrlon-current-user-copy span {
    display: block;

    margin-top: 3px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #777777;

    font-size: 9px;

    text-transform: capitalize;
}

.qrlon-current-user-avatar {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    border: 1px solid #333333;
    border-radius: 50%;

    background: #161616;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;
}


/* Mobile */

@media (max-width: 720px) {

    .qrlon-header-brand-copy span {
        display: none;
    }

    .qrlon-header-brand-logo {
        height: 24px;
        max-width: 80px;
    }
}

/* QRLON_HEADER_USER_BRAND_STYLE_V1_END */

/* =========================================================
   QRLON_HEADER_USER_RIGHT_V2
   ========================================================= */

.qrlon-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qrlon-header-right {
    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 18px;
}


/* Brand */

.qrlon-header-right .qrlon-header-brand {
    margin-left: 0;
}


/* Logged-in user */

.qrlon-header-user {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 9px;

    min-width: 0;

    padding-left: 16px;

    border-left: 1px solid #292929;
}

.qrlon-header-user[hidden] {
    display: none !important;
}

.qrlon-header-user-copy {
    min-width: 0;

    text-align: right;

    line-height: 1.15;
}

.qrlon-header-user-copy strong {
    display: block;

    max-width: 220px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;
}

.qrlon-header-user-copy span {
    display: block;

    margin-top: 3px;

    color: #888888;

    font-size: 9px;

    text-transform: capitalize;
}

.qrlon-header-user .qrlon-current-user-avatar {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    border: 1px solid #343434;
    border-radius: 50%;

    background: #171717;

    color: #ffffff;
}


/* Mobile */

@media (max-width: 760px) {

    .qrlon-header-right {
        gap: 10px;
    }

    .qrlon-header-brand-copy {
        display: none;
    }

    .qrlon-header-user-copy strong {
        max-width: 120px;
    }
}

@media (max-width: 560px) {

    .qrlon-header-brand {
        display: none !important;
    }

    .qrlon-header-user {
        padding-left: 0;
        border-left: 0;
    }
}

/* QRLON_HEADER_USER_RIGHT_V2_END */

/* =========================================================
   QRLON_USER_SIDEBAR_BOTTOM_RIGHT_V3
   ========================================================= */

/*
   Header:
   judul kiri, brand QRlon kanan.
*/

.qrlon-header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.qrlon-header-brand {
    margin-left: auto !important;
}


/*
   User tidak lagi berada di header.
*/

.qrlon-header-user {
    display: none !important;
}


/*
   Sidebar footer tetap berada di bawah.
*/

.qrlon-sidebar-footer {
    margin-top: auto !important;
    width: 100% !important;
}


/*
   Logged-in user:
   bawah sidebar, tepat di atas Logout,
   konten rata kanan.
*/

.qrlon-current-user-sidebar {
    width: 100% !important;

    margin: 0 0 10px 0 !important;
    padding: 8px 2px 10px 2px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 8px !important;

    box-sizing: border-box !important;

    text-align: right !important;
}

.qrlon-current-user-sidebar[hidden] {
    display: none !important;
}

.qrlon-current-user-sidebar .qrlon-current-user-copy {
    flex: 1 1 auto !important;
    min-width: 0 !important;

    text-align: right !important;
}

.qrlon-current-user-sidebar .qrlon-current-user-copy strong {
    display: block !important;

    max-width: 155px !important;

    margin-left: auto !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;

    color: #ffffff !important;

    font-size: 10px !important;
    font-weight: 600 !important;
}

.qrlon-current-user-sidebar .qrlon-current-user-copy span {
    display: block !important;

    margin-top: 3px !important;

    color: #777777 !important;

    font-size: 9px !important;

    text-align: right !important;
    text-transform: capitalize !important;
}

.qrlon-current-user-sidebar .qrlon-current-user-avatar {
    flex: 0 0 30px !important;

    width: 30px !important;
    height: 30px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid #333333 !important;
    border-radius: 50% !important;

    background: #161616 !important;

    color: #ffffff !important;

    font-size: 11px !important;
    font-weight: 700 !important;
}


/*
   Logout tetap di bawah current user.
*/

.qrlon-sidebar-logout-form {
    width: 100% !important;
    margin: 0 !important;
}


/* QRLON_USER_SIDEBAR_BOTTOM_RIGHT_V3_END */

/* =========================================================
   QRLON_SIDEBAR_USER_VERTICAL_V4
   ========================================================= */

.qrlon-current-user-sidebar {
    width: 100% !important;

    margin: 12px 0 10px 0 !important;
    padding: 10px 12px !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: flex-start !important;
    justify-content: flex-start !important;

    gap: 4px !important;

    text-align: left !important;
}


/* Email / username */

.qrlon-current-user-sidebar
.qrlon-current-user-copy {
    width: 100% !important;

    display: block !important;

    text-align: left !important;
}

.qrlon-current-user-sidebar
.qrlon-current-user-copy strong {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;

    color: #ffffff !important;

    font-size: 10px !important;
    font-weight: 600 !important;

    text-align: left !important;
}


/* Role */

.qrlon-current-user-sidebar
.qrlon-current-user-copy span {
    display: block !important;

    margin: 3px 0 0 0 !important;

    color: #7f7f7f !important;

    font-size: 9px !important;

    text-align: left !important;
    text-transform: capitalize !important;
}


/* Avatar berada di bawah */

.qrlon-current-user-sidebar
.qrlon-current-user-avatar {
    order: 2 !important;

    width: 30px !important;
    height: 30px !important;

    flex: 0 0 30px !important;

    margin-top: 5px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid #333333 !important;
    border-radius: 50% !important;

    background: #161616 !important;

    color: #ffffff !important;

    font-size: 11px !important;
    font-weight: 700 !important;
}


/* Logout tetap di bawah */

.qrlon-sidebar-logout-form {
    margin-top: 0 !important;
}


/* QRLON_SIDEBAR_USER_VERTICAL_V4_END */

/* =========================================================
   QRLON_SIDEBAR_USER_ALIGN_V5
   Email + Role + Avatar satu garis kiri
   ========================================================= */

.qrlon-sidebar-footer
.qrlon-current-user-sidebar {
    width: 100% !important;

    margin: 10px 0 10px 0 !important;
    padding: 10px 10px !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: flex-start !important;
    justify-content: flex-start !important;

    gap: 0 !important;

    box-sizing: border-box !important;
}


/* Email + role */

.qrlon-sidebar-footer
.qrlon-current-user-sidebar
.qrlon-current-user-copy {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    text-align: left !important;
}

.qrlon-sidebar-footer
.qrlon-current-user-sidebar
.qrlon-current-user-copy strong {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    font-size: 10px !important;
    font-weight: 600 !important;

    line-height: 14px !important;

    text-align: left !important;

    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.qrlon-sidebar-footer
.qrlon-current-user-sidebar
.qrlon-current-user-copy span {
    display: block !important;

    width: 100% !important;

    margin: 2px 0 0 0 !important;
    padding: 0 !important;

    color: #888888 !important;

    font-size: 9px !important;
    line-height: 12px !important;

    text-align: left !important;
}


/* Avatar persis sejajar dengan awal email */

.qrlon-sidebar-footer
.qrlon-current-user-sidebar
.qrlon-current-user-avatar {
    align-self: flex-start !important;

    margin:
        7px
        0
        0
        0 !important;

    padding: 0 !important;

    width: 28px !important;
    height: 28px !important;

    min-width: 28px !important;

    flex:
        0
        0
        28px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;

    border:
        1px solid
        #333333 !important;

    border-radius: 50% !important;

    background:
        #161616 !important;

    color:
        #ffffff !important;

    font-size:
        10px !important;

    font-weight:
        700 !important;

    line-height:
        1 !important;

    transform: none !important;
}


/* Logout mengikuti garis kiri yang sama */

.qrlon-sidebar-footer
.qrlon-sidebar-logout-form {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 10px !important;

    box-sizing: border-box !important;
}

/* QRLON_SIDEBAR_USER_ALIGN_V5_END */

/* =========================================================
   QRLON_SIDEBAR_USER_INLINE_V6

   (Q) | QRlon-Admin@Qrlon.com
         Administrator
   ========================================================= */

.qrlon-sidebar-footer
.qrlon-current-user-sidebar {
    width: 100% !important;

    margin: 10px 0 10px 0 !important;
    padding: 10px 10px !important;

    display: flex !important;
    flex-direction: row !important;

    align-items: flex-start !important;
    justify-content: flex-start !important;

    gap: 0 !important;

    box-sizing: border-box !important;

    text-align: left !important;
}


/* Avatar di paling kiri */

.qrlon-sidebar-footer
.qrlon-current-user-sidebar
.qrlon-current-user-avatar {
    order: 1 !important;

    align-self: flex-start !important;

    width: 28px !important;
    height: 28px !important;

    min-width: 28px !important;

    flex: 0 0 28px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;

    border: 1px solid #333333 !important;
    border-radius: 50% !important;

    background: #161616 !important;

    color: #ffffff !important;

    font-size: 10px !important;
    font-weight: 700 !important;

    line-height: 1 !important;
}


/* Pemisah | */

.qrlon-sidebar-footer
.qrlon-current-user-sidebar::before {
    content: "|" !important;

    order: 2 !important;

    display: block !important;

    margin: 5px 8px 0 8px !important;

    color: #555555 !important;

    font-size: 12px !important;
    line-height: 18px !important;
}


/* Email + role berada di kanan avatar */

.qrlon-sidebar-footer
.qrlon-current-user-sidebar
.qrlon-current-user-copy {
    order: 3 !important;

    flex: 1 1 auto !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    text-align: left !important;
}


/* Email */

.qrlon-sidebar-footer
.qrlon-current-user-sidebar
.qrlon-current-user-copy strong {
    display: block !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 1px 0 0 0 !important;
    padding: 0 !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;

    color: #ffffff !important;

    font-size: 10px !important;
    font-weight: 600 !important;

    line-height: 13px !important;

    text-align: left !important;
}


/* Administrator tepat di bawah email */

.qrlon-sidebar-footer
.qrlon-current-user-sidebar
.qrlon-current-user-copy span {
    display: block !important;

    width: 100% !important;

    margin: 2px 0 0 0 !important;
    padding: 0 !important;

    color: #808080 !important;

    font-size: 9px !important;
    line-height: 11px !important;

    text-align: left !important;
    text-transform: capitalize !important;
}


/* Saat hidden jangan muncul */

.qrlon-sidebar-footer
.qrlon-current-user-sidebar[hidden] {
    display: none !important;
}


/* Logout tetap di bawah */

.qrlon-sidebar-footer
.qrlon-sidebar-logout-form {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 10px !important;

    box-sizing: border-box !important;
}

/* QRLON_SIDEBAR_USER_INLINE_V6_END */


/* ============================================================
   QRLON_PENDING_APPROVAL_GATE_CSS_V1
   ============================================================ */

html.qrlon-approval-pending,
body.qrlon-approval-pending {
    overflow: hidden !important;
}


#qrlon-pending-approval-gate {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 24px;
}


.qrlon-pending-gate-backdrop {
    position: absolute;

    inset: 0;

    background:
        rgba(0, 0, 0, 0.55);

    backdrop-filter:
        blur(2px);
}


.qrlon-pending-gate-dialog {
    position: relative;

    z-index: 1;

    width: 100%;
    max-width: 440px;

    padding: 30px 28px;

    background: #ffffff;

    border:
        1px solid #dddddd;

    border-radius: 16px;

    box-shadow:
        0 24px 80px
        rgba(0, 0, 0, 0.28);

    color: #111111;

    text-align: center;
}


.qrlon-pending-gate-icon {
    width: 58px;
    height: 58px;

    margin:
        0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        #fff5db;

    color:
        #a66500;

    font-size: 28px;
    font-weight: 700;
}


.qrlon-pending-gate-dialog h2 {
    margin:
        0 0 12px;

    font-size: 21px;
    font-weight: 700;

    color: #111111;
}


.qrlon-pending-gate-dialog p {
    margin:
        6px 0;

    color: #666666;

    font-size: 13px;
    line-height: 1.55;
}


.qrlon-pending-gate-dialog
.qrlon-pending-gate-main {
    color: #222222;

    font-weight: 600;
}


.qrlon-pending-gate-status {
    margin:
        20px 0 14px;

    padding:
        11px 14px;

    border:
        1px solid #efd99e;

    border-radius: 8px;

    background:
        #fff9e9;

    color:
        #805300;

    font-size: 12px;
    font-weight: 600;
}


.qrlon-pending-gate-status span {
    display: inline-block;

    width: 8px;
    height: 8px;

    margin-right: 7px;

    border-radius: 50%;

    background:
        #e4a11b;
}


.qrlon-pending-gate-note {
    font-size:
        11px !important;

    color:
        #888888 !important;
}


#qrlon-pending-logout {
    width: 100%;

    min-height: 42px;

    margin-top: 20px;

    border: 0;

    border-radius: 8px;

    background:
        #111111;

    color:
        #ffffff;

    font-family:
        inherit;

    font-size:
        13px;

    font-weight:
        600;

    cursor:
        pointer;
}


#qrlon-pending-logout:hover {
    background:
        #222222;
}


/* QRLON_PENDING_APPROVAL_GATE_CSS_V1_END */