*{
    box-sizing:border-box;
}

.ii-container{
    width:100%;
    max-width:1400px;
    margin:40px auto;
    padding:0 20px;
}

.ii-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:35px;
    flex-wrap:wrap;
}

.ii-header h2{
    font-size:34px;
    font-weight:700;
    color:#111827;
    margin:0;
}

.ii-header p{
    color:#6b7280;
    margin-top:8px;
    font-size:15px;
}

.ii-btn{

    background:linear-gradient(
        90deg,
        rgb(216,27,132) 0%,
        rgb(255,122,0) 30%,
        rgb(109,40,217) 65%,
        rgb(29,78,216) 100%
    ) !important;

    color:#fff !important;

    border:none;

    border-radius:12px;

    padding:14px 28px;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.ii-btn:hover{

    transform:translateY(-2px);

    filter:brightness(1.08);

    box-shadow:0 10px 25px rgba(29,78,216,.25);

}

.ii-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-bottom:40px;
}

.ii-card{
    background:#fff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.25s;
}

.ii-card:hover{
    transform:translateY(-4px);
}

.ii-card h3{
    margin:0;
    font-size:30px;
    color:#111827;
}

.ii-card span{
    display:block;
    margin-top:12px;
    color:#6b7280;
    font-size:15px;
}

.ii-table-wrapper{
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    padding:20px;

    width:100%;
    overflow-x:auto;
    overflow-y:hidden;

    -webkit-overflow-scrolling:touch;
}

.ii-table-wrapper h3{
    margin-top:0;
    margin-bottom:25px;
    font-size:22px;
}

.ii-table{
    width:100%;
    min-width:900px;
    border-collapse:collapse;
}

.ii-table th{
    background:#f3f4f6;
    padding:16px;
    text-align:left;
    font-weight:600;
}

.ii-table td{
    padding:16px;
    border-bottom:1px solid #eee;
}

.ii-empty{
    text-align:center;
    color:#999;
    padding:60px !important;
}

@media(max-width:992px){

.ii-cards{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.ii-header{
flex-direction:column;
align-items:flex-start;
}

.ii-cards{
grid-template-columns:1fr;
}

.ii-btn{
width:100%;
}

}



/* ===========================
   Modal
=========================== */

.ii-modal-overlay{

    display:none;

    position:fixed;

    left:0;

    top:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.55);

    z-index:99999;

    overflow:auto;

}

.ii-modal{

    width:95%;

    max-width:700px;

    background:#fff;

    border-radius:18px;

    margin:60px auto;

    padding:30px;

    position:relative;

}

.ii-modal-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

}

.ii-modal-header h3{

    margin:0;

    font-size:24px;

}

.ii-close{

    border:none;

    background:none;

    color:#d81b84 !important;

    font-size:34px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

    line-height:1;

}

.ii-row{

    display:flex;

    gap:20px;

    margin-bottom:20px;

}

.ii-col{

    flex:1;

}

.ii-modal label{

    display:block;

    font-weight:600;

    margin-bottom:8px;

}

.ii-modal input,

.ii-modal textarea{

    width:100%;

    border:1px solid #ddd;

    border-radius:10px;

    padding:14px;

    font-size:15px;

}

.ii-modal textarea{

    resize:vertical;

}

.ii-save-btn{

    margin-top:25px;

    width:100%;

    background:linear-gradient(
        90deg,
        rgb(216,27,132) 0%,
        rgb(255,122,0) 30%,
        rgb(109,40,217) 65%,
        rgb(29,78,216) 100%
    ) !important;

    color:#fff;

    border:none;

    border-radius:10px;

    padding:15px;

    font-size:16px;

    cursor:pointer;

    transition:.3s;

}

.ii-save-btn:hover{

    filter:brightness(1.08);

}

@media(max-width:768px){

.ii-row{

flex-direction:column;

}

}






.ii-table th{

    background:#f5f5f5;

    padding:14px;

    text-align:left;

}

.ii-table td{

    padding:14px;

    border-top:1px solid #eee;

}

.ii-pending{

    background:#fff8db;

    color:#946200;

    padding:5px 10px;

    border-radius:20px;

    font-size:13px;

}

.ii-approved{

    background:#eaf9ef;

    color:#15803d;

    padding:5px 10px;

    border-radius:20px;

    font-size:13px;

}

.ii-rejected{

    background:#ffeaea;

    color:#dc2626;

    padding:5px 10px;

    border-radius:20px;

    font-size:13px;

}



/* Close Button */

.ii-modal-header .ii-close{

    appearance:none !important;
    -webkit-appearance:none !important;

    background:transparent !important;
    border:none !important;

    color:#d81b84 !important;

    font-size:38px !important;
    font-weight:700 !important;
    line-height:1 !important;

    cursor:pointer !important;

    padding:0 !important;
    margin:0 !important;

    transition:.3s ease !important;

}

.ii-modal-header .ii-close:hover{

    color:#ff7a00 !important;

    transform:rotate(90deg);

}