/* =====================================================
   E-PORTAL NAVBAR
===================================================== */

.eportal-navbar {

    position: sticky;

    top: 0;

    z-index: 9999;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #e5e7eb;

    box-shadow:
        0 2px 10px rgba(15, 23, 42, .06);
}


/* =====================================================
   NAVBAR INNER
===================================================== */

.eportal-navbar-inner {

    width: 100%;

    max-width: 1400px;

    min-height: 76px;

    margin: 0 auto;

    padding: 10px 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


/* =====================================================
   BRAND
===================================================== */

.eportal-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    color: #111827;

    flex-shrink: 0;
}


.eportal-logo {

    width: 48px;

    height: 48px;

    object-fit: contain;

    display: block;
}


.eportal-brand-title {

    font-size: 19px;

    font-weight: 700;

    color: #1d4ed8;
}


.eportal-brand-subtitle {

    margin-top: 3px;

    font-size: 12px;

    color: #64748b;
}


/* =====================================================
   MENU KANAN
===================================================== */

.eportal-nav-actions {

    display: flex;

    align-items: center;

    gap: 10px;
}


/* =====================================================
   TOMBOL HALAMAN KARYAWAN
===================================================== */

.eportal-home-button {

    height: 42px;

    padding: 0 16px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 10px;

    background: #2563eb;

    border: 1px solid #2563eb;

    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition: .2s ease;
}


.eportal-home-button:hover {

    background: #1d4ed8;

    border-color: #1d4ed8;

    color: #ffffff !important;

    transform: translateY(-1px);

}


.eportal-home-button i {

    font-size: 16px;

}


/* =====================================================
   ACCOUNT
===================================================== */

.eportal-account {

    position: relative;
}


.eportal-account-button {

    min-height: 46px;

    padding: 3px 8px;

    display: flex;

    align-items: center;

    gap: 8px;

    border: 0;

    background: transparent;

    border-radius: 10px;

    cursor: pointer;
}


.eportal-account-button:hover {

    background: #f1f5f9;
}


/* =====================================================
   AVATAR
===================================================== */

.eportal-avatar {

    width: 40px;

    height: 40px;

    min-width: 40px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #2563eb;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;
}


/* =====================================================
   ACCOUNT TEXT
===================================================== */

.eportal-account-info {

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.eportal-account-info strong {

    font-size: 13px;

    color: #111827;
}


.eportal-account-info small {

    margin-top: 2px;

    font-size: 10px;

    color: #64748b;
}


.eportal-account-arrow {

    font-size: 11px;

    color: #64748b;
}


/* =====================================================
   DROPDOWN
===================================================== */

.eportal-account-dropdown {

    position: absolute;

    top: calc(100% + 8px);

    right: 0;

    width: 280px;

    padding: 8px;

    display: none;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 13px;

    box-shadow:
        0 15px 35px rgba(15, 23, 42, .15);
}


.eportal-account-dropdown.show {

    display: block;
}


.dropdown-user {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px;
}


.dropdown-avatar {

    width: 42px;

    height: 42px;

    min-width: 42px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #dbeafe;

    color: #1d4ed8;

    font-weight: 700;
}


.dropdown-user-info {

    min-width: 0;
}


.dropdown-user strong {

    display: block;

    font-size: 14px;
}


.dropdown-user small {

    display: block;

    margin-top: 3px;

    font-size: 11px;

    color: #64748b;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


.dropdown-divider {

    height: 1px;

    margin: 5px 0;

    background: #e5e7eb;
}


.eportal-account-dropdown a {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 11px;

    border-radius: 8px;

    color: #334155;

    text-decoration: none;

    font-size: 13px;
}


.eportal-account-dropdown a:hover {

    background: #f1f5f9;
}


.eportal-account-dropdown a i {

    width: 18px;

    color: #64748b;
}


.eportal-account-dropdown .dropdown-logout {

    color: #dc2626 !important;
}


.eportal-account-dropdown .dropdown-logout i {

    color: #dc2626;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .eportal-navbar-inner {

        min-height: 62px;

        padding: 7px 12px;

        gap: 8px;

    }


    /* Logo tetap muncul */

    .eportal-logo {

        width: 40px;

        height: 40px;

    }


    /*
     * HILANGKAN TEKS E-PORTAL
     * HANYA PADA HP
     */

    .eportal-brand-text {

        display: none;

    }


    .eportal-nav-actions {

        gap: 6px;

    }


    /*
     * HALAMAN KARYAWAN
     * Pada HP hanya icon grid
     */

    .eportal-home-button {

        width: 42px;

        height: 42px;

        padding: 0;

        border-radius: 10px;

    }


    .eportal-home-button span {

        display: none;

    }


    .eportal-home-button i {

        font-size: 18px;

    }


    /*
     * AKUN
     */

    .eportal-account-button {

        width: 42px;

        height: 42px;

        min-height: 42px;

        padding: 0;

        justify-content: center;

    }


    .eportal-account-info {

        display: none;

    }


    .eportal-account-arrow {

        display: none;

    }


    .eportal-avatar {

        width: 38px;

        height: 38px;

        min-width: 38px;

    }


    /*
     * DROPDOWN HP
     */

    .eportal-account-dropdown {

        position: fixed;

        top: 68px;

        right: 10px;

        width: 280px;

        max-width:
            calc(100vw - 20px);

    }

}


/* =====================================================
   HP KECIL
===================================================== */

@media (max-width: 380px) {

    .eportal-navbar-inner {

        padding: 6px 9px;

    }


    .eportal-logo {

        width: 38px;

        height: 38px;

    }


    .eportal-home-button {

        width: 38px;

        height: 38px;

    }


    .eportal-account-button {

        width: 38px;

        height: 38px;

    }


    .eportal-avatar {

        width: 35px;

        height: 35px;

        min-width: 35px;

        font-size: 12px;

    }

}
/* =====================================================
   MOBILE - SEMBUNYIKAN NAMA E-PORTAL
   Desktop tetap menampilkan E-Portal LKM
===================================================== */

@media screen and (max-width: 768px) {

    .eportal-navbar .eportal-brand-text {
        display: none !important;
    }

}


/* HP sangat kecil */

@media screen and (max-width: 480px) {

    .eportal-navbar .eportal-brand-text {
        display: none !important;
    }

}