/* ===========================
   Body & font dasar
=========================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f8;
    color: #333;
    
}

/* ===========================
   Content wrapper
=========================== */


/* ===========================
   Judul
=========================== */
.content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 25px;
    border-bottom: 2px solid #b81414;
    display: inline-block;
    padding-bottom: 5px;
}

/* ===========================
   Table styling
=========================== */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

table th,
table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 14px;
}

table th {
    background-color: #b81414;
    color: #fff;
    font-weight: 600;
}

table tr:hover {
    background-color: #f1faff;
}

/* ===========================
   Tombol Approve
=========================== */
.btn-submit {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #1e8449;
}

.footer {
    text-align: center;
    margin-top: 500px;

}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
    .content {
        padding: 20px;
        margin: 20px;
    }
    
    table th, table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .btn-submit {
        padding: 6px 12px;
        font-size: 13px;
    }
}
