/* === TABLES === */
/* === CUSTOM DARK TABLE === */
.custom-dark-table thead tr,
.custom-dark-table thead th {
    background-color: #121212 !important;
    color: #f0f0f0 !important;
    border-bottom: 1px solid rgba(217, 168, 50, 0.5) !important;
    font-weight: 600;
    padding: 0.75rem;
    vertical-align: middle;
}

.custom-dark-table tbody tr {
    background-color: #181818;
    color: #e0e0e0;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(217, 168, 50, 0.2);
}

    .custom-dark-table tbody tr:hover {
        background-color: rgba(217, 168, 50, 0.2);
        color: #ffffff;
    }

.custom-dark-table tbody td {
    background-color: transparent;
    color: inherit;
    vertical-align: middle;
}

.custom-dark-table tbody form {
    background-color: transparent;
    margin: 0;
    padding: 0;
}