/* Audit Log Styles */
.audit-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #252526;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
}

.audit-table th, 
.audit-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #333;
    color: #ccc;
    font-size: 0.95rem;
}

.audit-table th {
    background-color: #2d2d2d;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.audit-table tr:last-child td {
    border-bottom: none;
}

.audit-table tr:hover {
    background-color: #2a2d2e;
}

.audit-action {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    color: #fff;
    background-color: #555;
}

.action-LOGIN_SUCCESS { background-color: #28a745; }
.action-LOGIN_FAILED { background-color: #dc3545; }
.action-console_command { background-color: #17a2b8; }
.action-FILE_EDIT { background-color: #ffc107; color: #000; }
.action-USER_CREATED { background-color: #007bff; }
.action-USER_DELETED { background-color: #dc3545; }

.audit-details {
    font-family: monospace;
    font-size: 0.85rem;
    color: #aaa;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
