.auditor-table thead th {
    padding: 23px 18px !important;
    font-weight: 500 !important;
    text-align: left !important;
}

.auditor-table tbody td {
    padding: 12px 18px !important;
}

.auditor-table .dataTables_filter {
    padding-bottom: 10px;
}

.ags-auditors-container {
    min-height: 200px;
    position: relative;
}

.ags-auditors-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.ags-auditors-loading p {
    margin-top: 15px;
    color: #666;
    font-size: 16px;
}

.ags-auditors-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #00534C;
    border-radius: 50%;
    animation: ags-auditors-spin 1s linear infinite;
}

@keyframes ags-auditors-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}