.custom-table {
    width: 90%;
    border-collapse: collapse;
    font-family: 'Arial', sans-serif;
    margin: auto;
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
}

.custom-table thead {
    background-color: var(--secondary-color);
    text-align: center;
}

.custom-table th {
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--primary-color);
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    font-style: italic;
}

.custom-table th .active {
    border-color: var(--text-light);
}

.custom-table th button i {
    color: var(--text-light);
}

.custom-table tbody tr {
    background-color: var(--accent-color);
    border-bottom: 1px solid var(--secondary-color);
    transition: background-color 0.3s ease;
}

.custom-table td {
    text-align: center;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.custom-table tbody tr:nth-child(odd) {
    background-color: #f8f8f8;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.action-buttons .btn {
    flex: 0 1 auto;
    padding: 0.5rem;
    font-size: 1rem;
}

.action-buttons form {
    display: inline-block;
    margin: 0;
}
