 
/* ===== CONTAINER ===== */
.custom-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,255,0,0.06);
    padding: 20px;
    margin-bottom: 20px;
}

/* ===== HEADER ===== */
.custom-header {
    font-weight: 600;
    font-size: 15px;
    padding: 12px 18px;
    background: linear-gradient(90deg,#ffb300,#ff8f00);
    color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* ===== TABLE BASE ===== */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 1400px;
}

/* HEADER */
.custom-table thead {
    background: #1f2937;
    color: #fff;
}

.custom-table thead th {
    padding: 10px 8px;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid #374151;
    white-space: nowrap;
}

/* BODY */
.custom-table tbody td {
    padding: 8px 10px;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

/* Zebra */
.custom-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

/* Hover */
.custom-table tbody tr:hover {
    background: #eef2ff;
    transition: 0.2s ease;
}

/* NUMBER ALIGN */
.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

/* BADGE */
.badge-primary {
    background: #2563eb;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

/* ACTION BUTTON */
.btn-action {
    display: inline-block;
    padding: 5px 9px;
    font-size: 12px;
    border-radius: 12px;
    text-decoration: none;
    margin-right: 4px;
    transition: 0.2s ease;
}

.btn-print { background: #f59e0b; color: #fff; }
.btn-edit  { background: #ef4444; color: #fff; }
.btn-view  { background: #3b82f6; color: #fff; }

.btn-action:hover {
    opacity: 0.85;
}

/* SCROLL WRAPPER */
.table-wrapper {
    overflow-x: auto;
} 

/* modal popup */

 .modal-header-premium{
    background: linear-gradient(135deg,#ccc,#fff);
    color:#fff;
    border-bottom:0;
    border-radius:6px 6px 0 0;
}

.modal-header-premium .modal-title{
    font-weight:600;
    letter-spacing:.5px;
}

.modal-header-premium .close{
    color:#fff;
    opacity:0.9;
}

.modal-header-premium .close:hover{
    opacity:1;
}

.si-modal {
    background: linear-gradient(135deg,#1e3c72,#2a5298);
    display: none;
    position: fixed;
    z-index: 9999;
    left:0;
top:0;
width:100%;
height:100%; 

    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(3px);

    
} 



.si-modal-content {
    background: #fff;
    width: 600px;
    max-width: 95%;
    margin: 5% auto;
    padding: 20px;
    border-radius: 12px;
    animation: popupFade 0.25s ease;
 
position:relative;
}

@keyframes popupFade {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.si-close {
    float: right;
    font-size: 22px;
 
position:absolute;
top:10px;
right:20px;
font-size:28px;
cursor:pointer; 
}


.popup-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.popup-table td {
    padding: 6px 4px;
    border-bottom: 1px solid #eee;
}

.popup-table td:first-child {
    font-weight: 600;
    width: 40%;
} 

/* blur background */
.blur-background{
    filter: blur(8px);
    transition: 0.3s;
}