/* MEGA GROUP — launcher, branding, and design-system refinements */

.pip-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: inherit;
}

.pip-logo-mark {
    height: 40px;
    width: auto;
    max-width: 168px;
    flex-shrink: 0;
    object-fit: contain;
}

.pip-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.pip-logo-name {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.pip-logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.72;
}

.card {
    border: 1px solid var(--pip-border);
    box-shadow: var(--shadow-sm);
}

.btn-custom-secondary {
    background-color: var(--pip-gold);
    border-color: var(--pip-gold);
    color: var(--pip-navy-dark);
}

.btn-custom-success {
    background-color: #3F8F68;
    border-color: #3F8F68;
    color: #FFFFFF;
}

.btn-custom-success:hover {
    background-color: #357a58;
    border-color: #357a58;
    color: #FFFFFF;
}

.btn-custom-secondary:hover {
    background-color: #D4B85C;
    border-color: #D4B85C;
    color: var(--pip-navy-dark);
}

/* ---------- Launcher ---------- */
.launcher-body {
    min-height: 100vh;
    background-color: var(--pip-bg);
    color: var(--pip-text);
}

.launcher-navbar {
    background-color: var(--pip-navy-dark);
    color: #FFFFFF;
    min-height: 64px;
    padding: 0.75rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 2px solid var(--pip-gold);
}

.launcher-navbar .pip-logo-name {
    color: #FFFFFF;
}

.launcher-navbar .pip-logo-sub {
    color: var(--pip-gold);
    opacity: 1;
}

.launcher-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.01em;
}

.launcher-meta-text {
    text-align: right;
    line-height: 1.45;
}

.launcher-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.18);
}

.launcher-logout {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #FFFFFF;
    font-size: 0.8rem;
    font-weight: 600;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 0.4rem 0.85rem;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.launcher-logout:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--pip-gold);
}

.launcher-main {
    position: relative;
    min-height: calc(100vh - 64px);
    padding: 3.5rem 1.5rem 4rem;
    overflow: hidden;
}

.launcher-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 12% 88%, rgba(18, 63, 90, 0.06) 0, transparent 42%),
        radial-gradient(circle at 88% 18%, rgba(201, 166, 70, 0.08) 0, transparent 36%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='720' height='420' viewBox='0 0 720 420'%3E%3Cg fill='none' stroke='%23123F5A' stroke-opacity='0.08' stroke-width='1'%3E%3Cpath d='M40 360 L120 280 L210 310 L300 200 L390 250 L480 140 L570 190 L680 80'/%3E%3Cpath d='M80 400 L180 330 L270 360 L360 250 L450 300 L560 210 L660 240'/%3E%3C/g%3E%3Cg fill='%23123F5A' fill-opacity='0.14'%3E%3Ccircle cx='40' cy='360' r='3'/%3E%3Ccircle cx='120' cy='280' r='2.5'/%3E%3Ccircle cx='210' cy='310' r='2.5'/%3E%3Ccircle cx='300' cy='200' r='3'/%3E%3Ccircle cx='390' cy='250' r='2.5'/%3E%3Ccircle cx='480' cy='140' r='2.5'/%3E%3Ccircle cx='570' cy='190' r='3'/%3E%3Ccircle cx='680' cy='80' r='2.5'/%3E%3C/g%3E%3Cg fill='%23C9A646' fill-opacity='0.35'%3E%3Ccircle cx='300' cy='200' r='3'/%3E%3Ccircle cx='570' cy='190' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right bottom, left top, center bottom;
    background-size: 70% 70%, 50% 50%, 100% 70%;
}

.launcher-inner {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    max-width: 920px;
    margin: 0 auto;
}

.module-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--pip-surface);
    border: 0px solid var(--pip-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding: 1.75rem 1.1rem 1.5rem;
    min-height: 210px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.module-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(18, 63, 90, 0.18);
    color: inherit;
}

.module-card:focus-visible {
    outline: 2px solid var(--pip-gold);
    outline-offset: 3px;
}

button.company-pick-card {
    width: 100%;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.company-pick-main {
    display: flex;
    align-items: center;
}

.company-pick-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.company-pick-heading {
    text-align: center;
    margin: 0 auto 2.25rem;
}

.company-pick-heading h1 {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--pip-navy);
    margin: 0 0 0.4rem;
    letter-spacing: -0.02em;
}

.company-pick-heading p {
    margin: 0;
    color: var(--pip-text-muted, #6C7A89);
    font-size: 0.95rem;
}

.company-pick-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    width: 100%;
    max-width: 1080px;
}

.company-pick-form {
    margin: 0;
}

.company-pick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 300px;
    min-height: 340px;
    padding: 2.4rem 1.6rem 2rem;
    background: var(--pip-surface);
    border: 1px solid transparent;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.company-pick-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(18, 63, 90, 0.16);
}

.company-pick-card:focus-visible {
    outline: 2px solid var(--pip-gold);
    outline-offset: 3px;
}

.company-pick-logo {
    width: 148px;
    height: 148px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 0px solid var(--pip-border);
    margin-bottom: 1.35rem;
    color: var(--pip-navy);
    font-size: 2.4rem;
}

.company-pick-logo img {
    width: 118px;
    height: 118px;
    object-fit: contain;
}

.company-pick-title {
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 0.45rem;
    color: var(--pip-navy);
}

.company-pick-desc {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--pip-text-muted, #6C7A89);
}

.module-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #F7F9FA 100%);
    border: 1px solid var(--pip-border);
    margin-bottom: 1.1rem;
    color: var(--pip-navy);
    font-size: 1.85rem;
    position: relative;
}

.module-icon::after {
    content: '';
    position: absolute;
    bottom: 8px;
    width: 18px;
    height: 3px;
    border-radius: 99px;
    background: var(--pip-gold);
    opacity: 0.85;
}

.module-icon.has-image {
    width: 88px;
    height: 88px;
    background: transparent;
    border: none;
}

.module-icon.has-image::after {
    display: none;
}

.module-icon-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.avatar-initials-img {
    background: #FFFFFF;
    padding: 4px;
    overflow: hidden;
}

.avatar-initials-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.module-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pip-text);
    margin-bottom: 0.35rem;
}

.module-card-desc {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--pip-text-muted);
    line-height: 1.45;
    margin: 0;
}

.module-home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--pip-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

.module-home-link:hover {
    color: var(--pip-navy);
}

.sidebar-brand .pip-logo-mark {
    width: auto;
    height: 36px;
    max-width: 148px;
}

.sidebar-brand {
    gap: 0.65rem;
}

.avatar-initials {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-lg);
    background: var(--pip-navy);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.sidebar-profile-img.avatar-initials {
    width: 42px;
    height: 42px;
}

.alert-green-link {
    color: var(--pip-gold);
}

.alert-green-link:hover {
    color: #FFFFFF;
}

.page-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--text-main, #072F1F);
    text-decoration: none;
}

.page-back-link:hover {
    color: #1a5880;
}

.page-form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.card .page-form-actions {
    margin-bottom: 0;
}

.table-responsive {
    border-radius: 10px;
}

.table-card-custom > .table-responsive {
    margin: 0.75rem;
}

.table-action-group {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
}

.table-action-group form {
    display: inline-flex;
    margin: 0;
}

button.table-btn-action {
    padding: 0;
    cursor: pointer;
}

.table-btn-action.delete {
    color: var(--sys-red, #B42318);
    border-color: rgba(180, 35, 24, 0.28);
    background-color: rgba(180, 35, 24, 0.08);
}

.table-btn-action.delete:hover,
.table-btn-action.delete:focus-visible {
    background-color: var(--sys-red, #B42318);
    color: #FFFFFF;
    border-color: var(--sys-red, #B42318);
}

.table-btn-action.success {
    color: #3F8F68;
    border-color: rgba(63, 143, 104, 0.35);
    background-color: rgba(63, 143, 104, 0.1);
}

.table-btn-action.success:hover,
.table-btn-action.success:focus-visible {
    background-color: #3F8F68;
    color: #FFFFFF;
    border-color: #3F8F68;
}

.voucher-tax-amount {
    color: var(--sys-red, #C45B5B);
}

.table-create-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1.25rem 1.25rem 0;
    margin-bottom: 1.5rem;
}

.table-create-bar-end {
    justify-content: flex-end;
}

.table-create-bar + .table-header-control {
    padding-top: 0;
}

.table-header-control {
    justify-content: flex-start;
}

.table-filter-fields {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
}

.table-filter-fields .table-search-box {
    flex-grow: 0;
    width: 13.5rem;
    max-width: 13.5rem;
}

.table-date-filter {
    width: 9.75rem;
    min-width: 9.75rem;
    max-width: 9.75rem;
    padding-left: 0.75rem;
}

.btn-table-action {
    background-color: var(--pip-navy, #123F5A);
    border-color: var(--pip-navy, #123F5A);
    color: #FFFFFF;
}

.btn-table-action:hover,
.btn-table-action:focus-visible {
    background-color: #0c2d42;
    border-color: #0c2d42;
    color: #FFFFFF;
}

.table-per-page {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
}

.table-per-page-label,
.table-pagination-info {
    font-size: 0.85rem;
    color: var(--text-muted-green, #6C7A89);
    margin: 0;
}

.table-per-page-select {
    width: auto;
    min-width: 4.75rem;
    padding: 0.35rem 1.75rem 0.35rem 0.65rem;
}

.table-pagination-links {
    margin-left: auto;
    max-width: 100%;
}

.table-pagination-links nav {
    display: flex;
    justify-content: flex-end;
}

.table-pagination-links .pagination {
    margin-bottom: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.2rem;
}

.table-pagination-links .page-link {
    min-width: 2.1rem;
    padding: 0.3rem 0.5rem;
    line-height: 1.25;
    text-align: center;
}

.menu-icon-input,
.menu-order-input {
    min-width: 5.5rem;
}

.menu-empty-hint {
    padding: 1rem 0.25rem 0;
    margin-bottom: 0;
}

.modal-pip {
    border: 1px solid var(--pip-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.modal-pip .modal-header,
.modal-pip .modal-footer {
    border-color: var(--pip-border);
    padding: 1.1rem 1.25rem;
}

.modal-pip .modal-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--pip-text);
}

.modal-pip .modal-body {
    padding: 1.25rem;
}

.modal-voucher-picker {
    width: calc(100% - 1.5rem);
    max-width: min(72rem, calc(100vw - 1.5rem));
    margin: 0.75rem auto;
}

.table-voucher-picker {
    width: 100%;
    min-width: 52rem;
    table-layout: auto;
}

.table-voucher-picker th,
.table-voucher-picker td {
    white-space: nowrap;
    vertical-align: middle;
    padding: 0.75rem 0.85rem;
}

.table-voucher-picker .col-amount {
    width: 9rem;
    text-align: end;
}

.table-voucher-picker .col-action {
    width: 3rem;
    text-align: center;
}

@media (max-width: 767.98px) {
    .modal-voucher-picker {
        width: calc(100% - 1rem);
        max-width: calc(100vw - 1rem);
        margin: 0.5rem auto;
    }
}

.swal-pip {
    font-family: inherit;
    border-radius: 16px !important;
}

.swal-pip .swal2-title {
    color: #123F5A;
    font-size: 1.25rem;
}

.swal-pip .swal2-styled.button-loading {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.swal-pip.swal2-loading .swal2-confirm,
.swal-pip.swal-pip-busy .swal2-confirm {
    display: inline-flex !important;
}

.swal-pip.swal2-loading .swal2-loader {
    display: none !important;
}

.swal-pip-busy .swal2-cancel,
.swal-pip-busy .swal2-deny,
.swal-pip-busy .swal2-close {
    pointer-events: none;
    opacity: 0.65;
}

.swal-pip-confirm {
    background: #123F5A !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
}

.swal-pip-confirm-danger {
    background: #B42318 !important;
}

.swal-pip-cancel {
    background: #EEF2F5 !important;
    color: #123F5A !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    box-shadow: none !important;
}

.button-loading {
    position: relative;
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.65;
    box-shadow: none;
    transform: none !important;
}

.btn-custom:disabled,
.btn-custom.button-loading,
.btn-login:disabled,
.btn-login.button-loading,
.launcher-logout:disabled,
.launcher-logout.button-loading,
.table-btn-action:disabled,
.table-btn-action.button-loading {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.65;
    box-shadow: none;
    transform: none !important;
}

.btn-custom-primary:disabled,
.btn-custom-primary.button-loading,
.btn-custom-primary:disabled:hover,
.btn-custom-primary.button-loading:hover,
.btn-login:disabled,
.btn-login.button-loading,
.btn-login:disabled:hover,
.btn-login.button-loading:hover {
    background-color: var(--brand-forest-medium, #123F5A);
    border-color: var(--brand-forest-medium, #123F5A);
    color: #FFFFFF;
}

.btn-custom-success:disabled,
.btn-custom-success.button-loading,
.btn-custom-success:disabled:hover,
.btn-custom-success.button-loading:hover {
    background-color: #3F8F68;
    border-color: #3F8F68;
    color: #FFFFFF;
}

.btn-custom-danger:disabled,
.btn-custom-danger.button-loading,
.btn-custom-danger:disabled:hover,
.btn-custom-danger.button-loading:hover {
    background-color: var(--sys-red, #C45B5B);
    border-color: var(--sys-red, #C45B5B);
    color: #FFFFFF;
}

.btn-custom-print:disabled,
.btn-custom-print.button-loading,
.btn-custom-print:disabled:hover,
.btn-custom-print.button-loading:hover {
    background-color: #0E7490;
    border-color: #0E7490;
    color: #FFFFFF;
}

.button-loading > i,
.button-loading > svg {
    display: none;
}

.button-loading-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: pip-button-spin 0.65s linear infinite;
    order: -1;
}

.btn-custom-primary.button-loading,
.btn-custom-success.button-loading,
.btn-custom-danger.button-loading,
.btn-custom-print.button-loading,
.btn-login.button-loading,
.launcher-logout.button-loading,
.swal-pip-confirm.button-loading {
    color: #FFFFFF;
}

@keyframes pip-button-spin {
    to {
        transform: rotate(360deg);
    }
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.65rem 1rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pip-text, #123F5A);
    margin: 0;
}

.permission-group {
    border: 1px solid var(--pip-border, #E4E9EE);
    border-radius: 12px;
    padding: 0.85rem 1rem 1rem;
    margin-top: 0.75rem;
}

.permission-node-head {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pip-text, #123F5A);
    cursor: pointer;
}

.permission-module-head {
    font-size: 0.95rem;
    font-weight: 700;
}

.permission-children {
    margin-top: 0.7rem;
    margin-left: 1.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.permission-menu {
    padding-top: 0.15rem;
}

.permission-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.45rem 1rem;
    margin-top: 0.5rem;
}

.permission-action {
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--pip-text-muted, #6C7A89);
}

.form-readonly-fieldset {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0;
}

.form-readonly-fieldset[disabled] .select2-container,
.form-readonly-fieldset:disabled .select2-container {
    pointer-events: none;
}

.card-form {
    overflow: visible;
}

.table-jurnal-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-jurnal-lines {
    width: 100%;
    min-width: 44rem;
    table-layout: fixed;
}

.table-jurnal-lines th,
.table-jurnal-lines td {
    white-space: normal;
    vertical-align: middle;
    padding: 0.75rem 0.85rem;
}

.table-jurnal-lines .col-akun {
    width: auto;
}

.table-jurnal-lines .col-amount {
    width: 10.5rem;
}

.table-jurnal-lines .col-action {
    width: 3.25rem;
    text-align: end;
}

.table-quotation-lines {
    min-width: 60rem;
}

.table-quotation-lines .col-qty {
    width: 6rem;
    text-align: end;
}

.table-quotation-lines .col-satuan {
    width: 7rem;
}

.table-jurnal-lines .form-control-custom,
.table-jurnal-lines .form-select-custom,
.table-jurnal-lines .select2-container {
    width: 100% !important;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.select2-container--open {
    z-index: 2000;
}

.select2-container--default .select2-selection--single {
    height: auto;
    min-height: 2.65rem;
    padding: 0.28rem 0.5rem;
    color: var(--text-main, #072F1F);
    background-color: #fff;
    border: 1px solid rgba(38, 52, 61, 0.12);
    border-radius: var(--radius-lg, 12px);
    position: relative;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    /* border-color: var(--brand-forest-medium, #123F5A); */
    box-shadow: 0 0 0 3px rgba(18, 63, 90, 0.08);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 2rem;
    padding-left: 0.15rem;
    padding-right: 1.5rem;
    color: inherit;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--text-muted-green, #6c757d);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: 0;
    right: 0.35rem;
    left: auto;
    height: 100%;
}

.select2-dropdown {
    border-color: rgba(38, 52, 61, 0.12);
    border-radius: var(--radius-lg, 12px);
}

body.form-readonly .permission-node-head {
    cursor: default;
}

@media (max-width: 1199.98px) {
    .module-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .launcher-navbar {
        flex-wrap: wrap;
        padding: 0.85rem 1rem;
    }

    .launcher-meta {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .launcher-meta-text {
        text-align: left;
        font-size: 0.72rem;
    }

    .module-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .company-pick-card {
        width: min(100%, 320px);
        min-height: 300px;
    }

    .company-pick-logo {
        width: 120px;
        height: 120px;
    }

    .company-pick-logo img {
        width: 96px;
        height: 96px;
    }
}

/* Membuat struktur titik (dot) */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin: auto 0.25rem;
  }

  /* Membuat animasi berkedip */
  .blink-animation {
    animation: blinker 1.5s linear infinite;
  }

  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }

.navbar-company-form {
    margin: 0;
}

.navbar-company {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-right: 0.75rem;
    max-width: 280px;
    padding: 0.35rem 0.65rem;
    border: 0;
    border-radius: var(--radius-md);
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: default;
}

button.navbar-company {
    cursor: pointer;
}

button.navbar-company:hover,
button.navbar-company:focus-visible {
    background: rgba(18, 63, 90, 0.08);
}

.navbar-company-name {
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-company .bi {
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1;
}

.launcher-navbar .navbar-company-form {
    display: inline-flex;
    vertical-align: middle;
}

.launcher-navbar .navbar-company {
    margin-right: 0;
    color: #FFFFFF;
    max-width: 240px;
}

.launcher-navbar button.navbar-company:hover,
.launcher-navbar button.navbar-company:focus-visible {
    background: rgba(255, 255, 255, 0.1);
}

.company-enter-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 28, 40, 0.55);
    backdrop-filter: blur(4px);
}

.company-enter-overlay[hidden] {
    display: none;
}

.company-enter-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.75rem 2rem;
    background: var(--pip-surface, #FFFFFF);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    min-width: min(90vw, 320px);
    text-align: center;
}

.company-enter-spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid rgba(18, 63, 90, 0.15);
    border-top-color: var(--pip-navy, #123F5A);
    border-radius: 50%;
    animation: pip-button-spin 0.7s linear infinite;
}

.company-enter-text {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--pip-navy, #123F5A);
}

body.company-entering {
    overflow: hidden;
}

.form-textarea-custom {
    min-height: 7rem;
    resize: vertical;
}

.table-status-filter {
    min-width: 10rem;
}

.bb-entries-row > td {
    background: #f4f7f8;
    padding: 0.5rem 0rem;
}

.bb-entries-row:hover > td {
    background: #f4f7f8;
}

.bb-entries-panel {
    padding-left: 0rem;
}

.bb-entries-panel .page-subtitle{
    padding-left: 0.5rem;
}

.bb-entries-table {
    background: #fff;
}

.bb-entries-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.form-control-wrap {
    position: relative;
}

.form-control-wrap .form-control-custom {
    padding-right: 2.5rem;
}

.form-control-wrap:has(.password-toggle-btn) .form-control-custom {
    padding-right: 2.75rem;
}

.form-control-wrap:has(.password-toggle-btn).is-checking .form-control-custom {
    padding-right: 4.6rem;
}

.form-control-spinner {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    width: 1rem;
    height: 1rem;
    margin-top: -0.5rem;
    border: 2px solid var(--text-muted-green, #6c7a89);
    border-right-color: transparent;
    border-radius: 50%;
    animation: pip-button-spin 0.65s linear infinite;
    pointer-events: none;
}

.form-control-wrap:has(.password-toggle-btn) .form-control-spinner {
    right: 2.55rem;
}

.form-control-wrap .password-toggle-btn {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted-green, #6c7a89);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    line-height: 1;
}

.form-control-wrap .password-toggle-btn:hover {
    color: var(--brand-forest-medium, #123f5a);
}

