.table-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 15px;
    margin-bottom: 20px;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.table-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-actions {
    display: flex;
    gap: 8px;
}

.table-actions button {
    padding: 7px 12px;
    border-radius: var(--border-radius);
    border: 1px solid var(--light-gray);
    background-color: white;
    color: var(--gray-color);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.table-actions button:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    border-color: #dee2e6;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 12px;
    text-align: center;
    letter-spacing: 0.5px;
}

td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
    transition: var(--transition);
}

tr:hover td {
    background-color: rgba(44, 92, 197, 0.05);
}

tr:nth-child(even) {
    background-color: #f8f9fa;
}
