/* =========================================
   HOME
========================================= */

.home-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:20px;
    margin-bottom:25px;
}

.stat-card{
    background:#fff;
    border-radius:14px;
    padding:22px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.stat-title{
    color:#6b7280;
    font-size:14px;
}

.stat-value{
    margin-top:8px;
    font-size:32px;
    font-weight:700;
}

/* =========================================
   MEMBER
========================================= */

.member-page{
    display:flex;
    flex-direction:column;
    gap:22px;
}

/* upload */

.upload-card{
    background:#fff;
    border-radius:14px;
    padding:22px;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.upload-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.upload-title{
    font-size:22px;
    font-weight:700;
}

.upload-actions{
    display:flex;
    gap:10px;
}

.file-name{
    margin-top:14px;
    color:#6b7280;
    font-size:14px;
}

/* =========================================
   REKAP
========================================= */

.rekap-card{

    background:#fff;

    border-radius:14px;

    padding:20px;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.rekap-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.rekap-title{

    font-size:20px;

    font-weight:700;

}

.rekap-actions{

    display:flex;

    gap:10px;

}

.rekap-table{

    width:100%;

    border-collapse:collapse;

    table-layout:fixed;

}

.rekap-table th{

    background:#2563eb;

    color:#fff;

    padding:14px;

    text-align:center;

    font-size:14px;

}

.rekap-table td{

    background:#f9fafb;

    padding:18px;

    text-align:center;

    font-size:18px;

    font-weight:700;

    border:1px solid #e5e7eb;

}

/* =========================================
   TOTAL
========================================= */

.total-member{

    margin-top:15px;

    font-size:17px;

    font-weight:700;

}

/* =========================================
   TABLE
========================================= */

.table-card{

    background:#fff;

    border-radius:14px;

    padding:20px;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.table-title{

    font-size:20px;

    font-weight:700;

    margin-bottom:18px;

}

.member-table{

    width:100%;

    border-collapse:collapse;

}

.member-table th{

    background:#2563eb;

    color:#fff;

    padding:12px;

    font-size:14px;

    text-align:left;

}

.member-table td{

    padding:11px 12px;

    border-bottom:1px solid #ececec;

    font-size:14px;

}

.member-table tbody tr:hover{

    background:#f7f9fc;

}

/* =========================================
   BUTTON
========================================= */

.btn{

    border:none;

    background:#2563eb;

    color:#fff;

    padding:11px 18px;

    border-radius:10px;

    cursor:pointer;

    font-weight:600;

    transition:.25s;

}

.btn:hover{

    opacity:.9;

}

.btn-reset{

    background:#ef4444;

}

/* =========================================
   FILE
========================================= */

input[type=file]{

    display:none;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:900px){

.rekap-table{

display:block;

overflow:auto;

}

.member-table{

display:block;

overflow:auto;

}

.upload-header,

.rekap-header{

flex-direction:column;

align-items:flex-start;

gap:15px;

}

}