/* Admin specific styles */

.admin-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
}
.admin-stat .icon {
    font-size: 2rem;
    opacity: 0.08;
    position: absolute;
    right: 1rem;
    top: 1rem;
}
.admin-stat .number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.2rem;
}
.admin-stat .label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Action buttons */
.btn-action {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    font-size: 0.8rem;
}
.btn-action-edit {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
}
.btn-action-edit:hover {
    background: var(--gold);
    color: #000;
}
.btn-action-delete {
    background: rgba(255, 0, 0, 0.08);
    color: #ff6b6b;
}
.btn-action-delete:hover {
    background: #ff6b6b;
    color: #fff;
}
.btn-action-view {
    background: rgba(0, 150, 255, 0.08);
    color: #4a9eff;
}
.btn-action-view:hover {
    background: #4a9eff;
    color: #fff;
}

/* DataTables overrides - CLEAN, no hover color changes */
.dataTables_wrapper .dataTables_filter input {
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #fff;
    padding: 0.5rem 1rem;
}
.dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.08);
}
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_length {
    color: var(--text-muted);
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
    color: #888 !important;
    border-radius: 8px !important;
    border: none !important;
    padding: 0.3rem 0.8rem !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: var(--gold) !important;
    color: #000 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
    border: none !important;
}

/* Activity feed */
.activity-feed {
    max-height: 350px;
    overflow-y: auto;
}
.activity-item {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
}
.activity-item:last-child { border-bottom: none; }
.activity-item .time { color: var(--text-muted); font-size: 0.75rem; }