/* ===== TABEL FRONT END PREMIUM ===== */
.tabel_front_end {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
    background-color: #ffffff;
    color: #212529;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* ===== HEADER (HIJAU #6bb00b) ===== */
.tabel_front_end thead th {
    padding: 14px 12px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(135deg, #6bb00b, #4e8f00);
    border-bottom: none;
}

/* ===== BODY ===== */
.tabel_front_end tbody td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    background-color: #ffffff;
}

/* ===== ZEBRA VARIATIVE ===== */
.tabel_front_end tbody tr:nth-child(odd) td {
    background-color: #f6fbef;
}

.tabel_front_end tbody tr:nth-child(even) td {
    background-color: #ffffff;
}

/* ===== HOVER EFFECT ===== */
.tabel_front_end tbody tr:hover td {
    background-color: #e4f3d2;
    transition: background-color 0.2s ease;
}

/* ===== BORDER SEPARATOR ===== */
.tabel_front_end td + td,
.tabel_front_end th + th {
    border-left: 1px solid #dee2e6;
}

/* ===== ROUNDED HEADER ===== */
.tabel_front_end thead th:first-child {
    border-top-left-radius: 10px;
}

.tabel_front_end thead th:last-child {
    border-top-right-radius: 10px;
}

/* ===== TEXT ALIGN ===== */
.tabel_front_end .text-center { text-align: center; }
.tabel_front_end .text-right { text-align: right; }

/* ===== BADGE ===== */
.tabel_front_end .badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: linear-gradient(135deg, #6bb00b, #4e8f00);
    color: #fff;
}

.badge-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: #212529;
}

.badge-danger {
    background: linear-gradient(135deg, #dc3545, #b02a37);
    color: #fff;
}

/* ===== BUTTON ===== */
.tabel_front_end .btn {
    padding: 5px 12px;
    font-size: 12px;
    border-radius: 6px;
}

/* ===== RESPONSIVE ===== */
.table-responsive {
    overflow-x: auto;
}
