/* ================= EXPORT BUTTONS ================= */

.export-buttons{
    margin-bottom: 20px;
}

.btn-export{
    display: inline-block;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    margin-right: 10px;
}

.excel{
    background: #15803d;
}

.excel:hover{
    background: #166534;
}

.pdf{
    background: #dc2626;
}

.pdf:hover{
    background: #b91c1c;
}


    /* ================= TABLE SYSTEM ================= */
    .table-wrapper {
        width: 100%;
        overflow-x: auto; /* Adds clean swipe scrolling on mobile devices */
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        background: white;
        margin: 20px 0;
        -webkit-overflow-scrolling: touch;
    }

    table {
        width: 100%; /* Fully dynamic scale */
        border-collapse: collapse;
        min-width: 600px; /* Guarantees data layout structural integrity */
    }

    table th {
        background: #0f7486;
        color: white;
        text-align: left;
        padding: 15px;
        font-weight: 500;
        white-space: nowrap;
    }

    table td {
        padding: 14px;
        border-bottom: 1px solid #e2e8f0;
        font-size: 14px;
    }

    table tr:hover {
        background: #f8fafc;
    }

/* ================= ACTION BUTTONS ================= */

table td a{
    padding: 7px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-size: 13px;
}

.Approve-btn, .Disburse-btn{
   background:#16a34a;
   padding:8px 15px;
   color:white;
   text-decoration:none;
   border-radius:5px;
}

.Approve-btn:hover, .Disburse-btn:hover{
    background: #15803d;
    transform: translateY(-2px);
}

.Approve-btn:active, .Disburse-btn:active{
    transform: scale(0.98);
}

.btn-Reject{
    background: #dc2626;
}

.btn-Reject:hover{
    background: #b91c1c;
}

