/* Audit Logs Styles (Owner Only) */
.audit-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.filter-select,
.filter-input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    min-width: 150px;
}

.filter-btn {
    padding: 8px 16px;
    background: #264461;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.filter-btn:hover {
    background: #1a3a52;
    transform: translateY(-1px);
}

.export-btn {
    padding: 8px 16px;
    background: #218838;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.export-btn:hover {
    background: #218838;
    transform: translateY(-1px);
}

.audit-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.audit-table thead {
    background: #264461;
    color: white;
    position: sticky;
    top: 0;
}

.audit-table th,
.audit-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.audit-table tbody tr:hover {
    background: #f8f9fa;
}

.audit-page-btn {
    padding: 6px 12px;
    background: white;
    border: 1px solid #264461;
    color: #264461;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.audit-page-btn:hover {
    background: #264461;
    color: white;
}

.owner-only {
    border-left: 3px solid #d4af37 !important;
}

.audit-logs-table {
    max-height: 500px;
    overflow-y: auto;
}
