/* =====================================
   SIMON-GI
===================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{

    --primary:#0B4EA2;
    --primary-dark:#083D82;

    --success:#1FA463;

    --warning:#F5A623;

    --danger:#E53935;

    --bg:#F4F7FB;

    --card:#FFFFFF;

    --text:#1F2937;

    --border:#E5E7EB;

}

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

    font-family:'Poppins',sans-serif;

}

body{

    background:var(--bg);

    color:var(--text);

}


/* ===========================
FILTER
=========================== */

.filter-card{

    border:none;

    border-radius:18px;

    background:white;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.form-label{

    font-weight:600;

}

.form-control,

.form-select{

    border-radius:10px;

}

.btn-primary{

    background:var(--primary);

    border:none;

    border-radius:10px;

}

.btn-primary:hover{

    background:var(--primary-dark);

}

/* ===========================
KPI CARD
=========================== */

.kpi-card{
    height: 100%;
    border: none;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.kpi-card .card-body{
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kpi-icon{

    width:60px;

    height:60px;

    border-radius:15px;

    background:#EDF4FF;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--primary);

    font-size:26px;

    margin-bottom:20px;

}

.kpi-value{

    font-size:34px;

    font-weight:700;

}

.kpi-title{

    font-size:16px;

    color:#6B7280;

}

.progress{

    border-radius:20px;

    overflow:hidden;

}

.progress-bar{

    border-radius:20px;

}

/* ===========================
CONTENT CARD
=========================== */

.content-card{

    border:none;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    overflow:hidden;

}

.content-card .card-header{

    background:var(--primary);

    color:white;

    font-weight:600;

    font-size:18px;

    padding:15px 20px;

    border:none;

}

.content-card .card-body{

    background:white;

    padding:20px;

}

/* ===========================
SATKER BELUM MENGAJUKAN
=========================== */

.satker-list{

    max-height:500px;

    overflow-y:auto;

}

.satker-item{

    padding:15px;

    border-bottom:1px solid #EEEEEE;

    transition:.25s;

    cursor:pointer;

}

.satker-item:hover{

    background:#EDF4FF;

    border-radius:10px;

}

.satker-item:last-child{

    border-bottom:none;

}

/* ===========================
TRACKING
=========================== */

.summary-box{

    background:#F8FAFC;

    border-radius:12px;

    padding:18px;

    text-align:center;

    border:1px solid #E5E7EB;

    transition:.3s;

    height:100%;

}

.summary-box:hover{

    background:#EDF4FF;

    transform:translateY(-3px);

}

.summary-box small{

    display:block;

    color:#6B7280;

    margin-bottom:8px;

}

.summary-box h5,

.summary-box h6{

    margin:0;

    font-weight:700;

}

/* ===========================
TABLE
=========================== */

.table{

    margin-bottom:0;

}

.table thead{

    background:var(--primary);

}

.table thead th{

    color:white;

    border:none;

    white-space:nowrap;

    vertical-align:middle;

}

.table tbody td{

    vertical-align:middle;

}

.table-hover tbody tr:hover{

    background:#EDF4FF;

}

/* ===========================
BADGE
=========================== */

.badge{

    padding:8px 14px;

    font-size:13px;

    border-radius:30px;

}

/* ===========================
FOOTER
=========================== */

footer{

    color:#6B7280;

    margin-top:40px;

}

/* ===========================
SCROLLBAR
=========================== */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:#C8D3E0;

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#F5F5F5;

}

/* ===========================
ANIMATION
=========================== */

.kpi-card,

.content-card{

    animation:fadeUp .5s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ===========================
RESPONSIVE
=========================== */

@media (max-width:992px){

    .title{

        font-size:24px;

    }

    .subtitle{

        font-size:15px;

    }

    .logo{

        height:55px;

        margin-bottom:10px;

    }

    .update-title,

    .update-date{

        text-align:center;

    }

    .header{

        text-align:center;

    }

}

@media (max-width:768px){

    .kpi-value{

        font-size:28px;

    }

    .summary-box{

        margin-bottom:15px;

    }

    .table{

        font-size:13px;

    }

}

/* ===========================
   HEADER
=========================== */

.header{

    background: linear-gradient(135deg,#0B4EA2,#1E63B5);

    color:#fff;

    padding:22px 35px;

    border-radius:0 0 20px 20px;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

}

.logo-header{

    width:62px;

}

.header-title{

    font-size:34px;

    font-weight:800;

    margin-bottom:2px;

    letter-spacing:1px;

}

.header-subtitle{

    font-size:17px;

    opacity:.95;

}

.header-office{

    opacity:.8;

}

.update-title{

    font-size:14px;

    opacity:.85;

}

.update-time{

    font-size:20px;

    font-weight:700;

}

/* ======================================
   KPI CARD PREMIUM
====================================== */

.kpi-card{

    border:none;

    border-radius:18px;

    box-shadow:0 8px 24px rgba(0,0,0,.08);

    transition:.25s;

    height:100%;

}

.kpi-card:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.kpi-card .card-body{

    padding:28px;

}

.kpi-icon{

    width:60px;

    height:60px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    margin-bottom:20px;

}

.kpi-number{

    font-size:38px;

    font-weight:800;

    color:#1e293b;

}

.kpi-label{

    color:#64748b;

    font-size:15px;

    margin-bottom:10px;

}

.kpi-detail{

    font-size:14px;

    margin-top:8px;

}

.progress{

    height:12px;

    border-radius:30px;

}

/* ==========================
   TRACKING PREMIUM
========================== */

.tracking-card{

    background:#ffffff;

    border-radius:18px;

    padding:22px;

    box-shadow:0 8px 20px rgba(15,23,42,.08);

    border:1px solid #eef2f7;

    transition:.25s;

}

.tracking-card:hover{

    transform:translateY(-4px);

    box-shadow:0 16px 35px rgba(15,23,42,.15);

}

.tracking-title{

    color:#64748b;

    font-size:14px;

    margin-bottom:12px;

    font-weight:600;

}

.tracking-value{

    font-size:26px;

    font-weight:700;

    color:#0f172a;

}

.tracking-rupiah{

    font-size:22px;

}

.tracking-mini{

    border-radius:16px;

    color:#fff;

    padding:18px;

    text-align:center;

    transition:.25s;

}

.tracking-mini:hover{

    transform:translateY(-4px);

}

.tracking-mini h3{

    margin-top:8px;

    margin-bottom:0;

    font-size:30px;

    font-weight:700;

}

.success{

    background:linear-gradient(135deg,#16a34a,#22c55e);

}

.warning{

    background:linear-gradient(135deg,#f59e0b,#fbbf24);

}

.danger{

    background:linear-gradient(135deg,#dc2626,#ef4444);

}

/* =====================================
   DETAIL TABLE PREMIUM
===================================== */

.detail-table{

    max-height:430px;

    overflow-y:auto;

    border-radius:18px;

    border:1px solid #e5e7eb;

}

.detail-table table{

    margin:0;

}

.detail-table thead{

    position:sticky;

    top:0;

    z-index:10;

}

.detail-table thead th{

    background:#0B4EA2;

    color:white;

    border:none;

    font-weight:600;

    font-size:14px;

    padding:14px;

}

.detail-table tbody td{

    padding:14px;

    vertical-align:middle;

}

.detail-table tbody tr:nth-child(even){

    background:#f8fafc;

}

.detail-table tbody tr:hover{

    background:#eef6ff;

    transition:.2s;

}

/* ======================================
   SATKER BELUM MENGAJUKAN
====================================== */

.search-box{

    border-radius:14px;

    height:46px;

    border:1px solid #dbe3ef;

    box-shadow:none;

}

.search-box:focus{

    border-color:#0B4EA2;

    box-shadow:0 0 0 .15rem rgba(11,78,162,.15);

}

.satker-list{

    height:460px;

    overflow-y:auto;

}

.satker-item{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:14px;

    padding:14px;

    margin-bottom:12px;

    transition:.25s;

    cursor:pointer;

}

.satker-item:hover{

    transform:translateY(-3px);

    border-color:#0B4EA2;

    box-shadow:0 8px 22px rgba(11,78,162,.12);

}

.satker-icon{

    width:52px;

    height:52px;

    background:#eaf3ff;

    color:#0B4EA2;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}

.satker-kode{

    font-size:14px;

    font-weight:700;

    color:#0f172a;

}

.satker-nama{

    font-size:13px;

    color:#64748b;

    margin-top:2px;

}

.content-card{

    border:none;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(15,23,42,.08);

}

.content-card .card-header{

    background:#ffffff;

    color:#0f172a;

    border-bottom:1px solid #e5e7eb;

    padding:18px 22px;

    display:flex;

    align-items:center;

    gap:10px;

    justify-content:flex-start;

    font-size:18px;

    font-weight:700;

}

.content-card .card-header i{

    color:#0B4EA2;

    margin-right:8px;

}

.content-card .card-body{

    padding:22px;

}

.content-card .card-header{

    color:#0f172a !important;

    background:#ffffff !important;

}

.icon-blue{
    background:#0B4EA2;
    color:#ffffff;
}



