@charset "utf-8";
/* CSS Document */
/* ===== assets/css/components/tables.css ===== */

.table-container {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: var(--shadow);
    background: white;
    border: 1px solid rgba(136,29,107,0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

table th {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 15px;
    font-weight: 600;
    text-align: left;
    font-size: 0.9rem;
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(136,29,107,0.1);
    color: var(--gray);
    font-size: 0.95rem;
}

table tr:hover {
    background: var(--primary-soft);
}

table tr:last-child td {
    border-bottom: none;
}
