/* 
 * Bethel Associates - Admin Panel Styles
 */

:root {
    --admin-bg: #f0f2f5;
    --admin-sidebar: #1a1a2e;
    --admin-sidebar-hover: #16213e;
    --admin-primary: #A7C636;
    --admin-primary-dark: #91af2d;
    --admin-danger: #ef4444;
    --admin-warning: #f59e0b;
    --admin-success: #10b981;
    --admin-text: #1f2937;
    --admin-text-light: #6b7280;
    --admin-card: #ffffff;
    --admin-border: #e5e7eb;
}

body.dark-theme {
    --admin-bg: #0f1117;
    --admin-sidebar: #0d0d14;
    --admin-sidebar-hover: #1a1a2e;
    --admin-primary: #A7C636;
    --admin-primary-dark: #91af2d;
    --admin-text: #e2e8f0;
    --admin-text-light: #94a3b8;
    --admin-card: #1a1a24;
    --admin-border: #2d2d3a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--admin-bg);
    color: var(--admin-text);
    min-height: 100vh;
}

/* ===== LOGIN PAGE ===== */
.admin-login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.admin-login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.admin-login-card {
    background: var(--admin-card);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.admin-login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.admin-login-logo img {
    height: 60px;
    margin-bottom: 10px;
}

.admin-login-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--admin-text);
}

.admin-login-logo p {
    font-size: 0.85rem;
    color: var(--admin-text-light);
    margin-top: 4px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--admin-text);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--admin-border);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    background: #fff;
    color: var(--admin-text);
}

.form-control:focus {
    border-color: var(--admin-primary);
    outline: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    width: 100%;
}

.btn-primary {
    background: var(--admin-primary);
    color: #1a1a2e;
}

.btn-primary:hover {
    background: var(--admin-primary-dark);
    transform: translateY(-1px);
}

.btn-danger {
    background: var(--admin-danger);
    color: white;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-success {
    background: var(--admin-success);
    color: white;
}

.btn-success:hover {
    background: #059669;
}

.btn-warning {
    background: var(--admin-warning);
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.82rem;
    width: auto;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--admin-border);
    color: var(--admin-text);
}

.btn-outline:hover {
    border-color: var(--admin-primary);
    color: var(--admin-primary);
}

.login-error {
    background: #fef2f2;
    color: var(--admin-danger);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: none;
}

.login-error.show {
    display: block;
}

/* ===== ADMIN LAYOUT ===== */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--admin-sidebar);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
    transition: transform 0.3s;
}

.admin-sidebar-header {
    padding: 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-sidebar-header .sidebar-logo {
    height: 40px;
}

.admin-sidebar-header h2 {
    font-size: 1rem;
    font-weight: 600;
}

.admin-sidebar-header p {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
}

.sidebar-profile {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--admin-primary);
    color: var(--admin-sidebar);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.sidebar-user-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.sidebar-user-info span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.sidebar-nav {
    padding: 16px 12px;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.88rem;
    transition: all 0.2s;
    margin-bottom: 4px;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    background: rgba(167, 198, 54, 0.15);
    color: var(--admin-primary);
}

.sidebar-nav a i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 24px 32px;
    min-height: 100vh;
}

/* ===== ADMIN TOP BAR ===== */
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--admin-border);
}

.admin-topbar h1 {
    font-size: 1.6rem;
    font-weight: 700;
}

.admin-topbar-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* ===== STATS CARDS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--admin-card);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid var(--admin-border);
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.stat-card-header i {
    font-size: 1.8rem;
    color: var(--admin-primary);
    opacity: 0.8;
}

.stat-card h3 {
    font-size: 0.82rem;
    color: var(--admin-text-light);
    font-weight: 500;
    margin-bottom: 4px;
}

.stat-card .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--admin-text);
}

.stat-card .stat-trend {
    font-size: 0.78rem;
    margin-top: 4px;
}

.stat-trend.up { color: var(--admin-success); }
.stat-trend.down { color: var(--admin-danger); }

/* ===== DATA TABLE ===== */
.admin-card {
    background: var(--admin-card);
    border-radius: 14px;
    border: 1px solid var(--admin-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 24px;
}

.admin-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--admin-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-card-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
}

.admin-card-body {
    padding: 20px 24px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--admin-text-light);
    border-bottom: 2px solid var(--admin-border);
}

table td {
    padding: 12px 16px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--admin-border);
    vertical-align: middle;
}

table tr:hover td {
    background: #f8fafc;
}

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

/* ===== STATUS BADGES ===== */
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active { background: rgba(16,185,129,0.1); color: var(--admin-success); }
.status-badge.sold, .status-badge.rented { background: rgba(99,102,241,0.1); color: #6366f1; }
.status-badge.inactive { background: rgba(107,114,128,0.1); color: var(--admin-text-light); }
.status-badge.pending { background: rgba(245,158,11,0.1); color: var(--admin-warning); }
.status-badge.verified { background: rgba(16,185,129,0.1); color: var(--admin-success); }
.status-badge.rejected { background: rgba(239,68,68,0.1); color: var(--admin-danger); }
.status-badge.submitted { background: rgba(99,102,241,0.1); color: #6366f1; }
.status-badge.approved { background: rgba(16,185,129,0.1); color: var(--admin-success); }
.status-badge.scheduled { background: rgba(59,130,246,0.1); color: #3b82f6; }

/* ===== DRAG & DROP ===== */
.drag-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.drag-column {
    min-width: 300px;
    max-width: 350px;
    background: var(--admin-bg);
    border-radius: 12px;
    padding: 16px;
    border: 2px dashed transparent;
    transition: border-color 0.2s;
}

.drag-column.dragover {
    border-color: var(--admin-primary);
    background: rgba(167,198,54,0.05);
}

.drag-column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--admin-border);
}

.drag-column-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
}

.drag-column-header .count {
    background: var(--admin-primary);
    color: var(--admin-sidebar);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.drag-item {
    background: var(--admin-card);
    border: 1px solid var(--admin-border);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: grab;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.drag-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.drag-item:active {
    cursor: grabbing;
}

.drag-item.chosen {
    opacity: 0.5;
}

.drag-item .item-title {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.drag-item .item-subtitle {
    font-size: 0.78rem;
    color: var(--admin-text-light);
}

.drag-item .item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--admin-primary);
    margin-top: 6px;
}

.drag-item .item-actions {
    margin-top: 10px;
    display: flex;
    gap: 8px;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: var(--admin-card);
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--admin-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.15rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--admin-text-light);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--admin-border);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* ===== PROFILE/DOCUMENT VERIFICATION ===== */
.doc-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--admin-bg);
    border-radius: 8px;
    margin-bottom: 8px;
}

.doc-preview i {
    font-size: 1.5rem;
    color: var(--admin-primary);
}

.doc-preview .doc-info {
    flex: 1;
}

.doc-preview .doc-info h4 {
    font-size: 0.88rem;
    font-weight: 600;
}

.doc-preview .doc-info p {
    font-size: 0.78rem;
    color: var(--admin-text-light);
}

.verification-actions {
    display: flex;
    gap: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .admin-sidebar {
        transform: translateX(-100%);
    }
    .admin-sidebar.open {
        transform: translateX(0);
    }
    .admin-main {
        margin-left: 0;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .drag-container {
        flex-direction: column;
    }
    .drag-column {
        min-width: 100%;
    }
}

/* ===== TOAST ===== */
.admin-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 14px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s;
}

.admin-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.admin-toast-success {
    background: #10b981;
    color: white;
}

.admin-toast-error {
    background: #ef4444;
    color: white;
}

.admin-toast-warning {
    background: #f59e0b;
    color: white;
}

.admin-toast i {
    font-size: 1.1rem;
}

/* ===== PERMISSIONS GRID ===== */
.permissions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.perm-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 2px solid var(--admin-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--admin-card);
    user-select: none;
}

.perm-checkbox:hover {
    border-color: var(--admin-primary);
    background: rgba(167, 198, 54, 0.04);
}

.perm-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--admin-primary);
    cursor: pointer;
}

.perm-checkbox:has(input:checked) {
    border-color: var(--admin-primary);
    background: rgba(167, 198, 54, 0.06);
}

.perm-checkbox:has(input:not(:checked)) {
    opacity: 0.7;
}

.perm-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--admin-text);
}

.perm-label i {
    width: 16px;
    color: var(--admin-primary);
    font-size: 0.9rem;
}

.perm-disabled {
    opacity: 0.5 !important;
    cursor: not-allowed;
    background: rgba(107, 114, 128, 0.04);
}

.perm-disabled input[type="checkbox"] {
    cursor: not-allowed;
}

.perm-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(239, 68, 68, 0.1);
    color: var(--admin-danger);
}

/* ===== PERMISSION ICONS IN TABLE ===== */
.perm-icons {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.perm-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    font-size: 0.7rem;
    transition: all 0.2s;
    cursor: default;
}

.perm-dot.granted {
    background: rgba(16, 185, 129, 0.1);
    color: var(--admin-success);
}

.perm-dot.denied {
    background: rgba(239, 68, 68, 0.06);
    color: var(--admin-text-light);
    opacity: 0.5;
}

.perm-dot:hover {
    transform: scale(1.15);
}

/* ===== EMPTY STATE ===== */
/* ===== CONFIRMATION DIALOG ===== */
.confirm-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.confirm-dialog-overlay.show {
    display: flex;
}

.confirm-dialog {
    background: var(--admin-card);
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideUp 0.25s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.confirm-dialog-header {
    padding: 20px 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.confirm-dialog-header i {
    font-size: 1.4rem;
    color: var(--admin-primary);
}

.confirm-dialog-header.confirm-danger i {
    color: var(--admin-danger);
}

.confirm-dialog-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.confirm-dialog-body {
    padding: 16px 24px;
    font-size: 0.88rem;
    color: var(--admin-text);
    line-height: 1.6;
}

.confirm-dialog-body strong {
    font-weight: 700;
}

.confirm-dialog-footer {
    padding: 16px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid var(--admin-border);
}

.confirm-dialog-footer .btn {
    min-width: 100px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--admin-text-light);
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-state h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--admin-text);
}

.empty-state p {
    font-size: 0.88rem;
}

/* ===== PROPERTY IMAGE UPLOAD ===== */
.prop-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.image-upload-zone {
    border: 2px dashed var(--admin-border);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 120px;
    background: var(--admin-bg);
}

.image-upload-zone:hover,
.image-upload-zone.dragover {
    border-color: var(--admin-primary);
    background: rgba(167, 198, 54, 0.05);
}

.image-upload-zone i {
    font-size: 1.8rem;
    color: var(--admin-text-light);
}

.image-upload-zone p {
    font-size: 0.78rem;
    color: var(--admin-text-light);
    margin: 0;
}

.image-preview-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 2px solid var(--admin-border);
    background: var(--admin-bg);
    transition: all 0.2s;
}

.image-preview-card:hover {
    border-color: var(--admin-primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.image-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    display: block;
}

.image-delete-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 2;
}

.image-preview-card:hover .image-delete-btn {
    opacity: 1;
}

.image-delete-btn:hover {
    background: #dc2626;
}

.image-order-badge {
    position: absolute;
    bottom: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Table image thumbnail */
.table-image-thumb {
    width: 52px;
    height: 40px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--admin-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid var(--admin-border);
}

.table-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    display: block;
}

.table-image-thumb i {
    font-size: 1.1rem;
    color: var(--admin-text-light);
    opacity: 0.4;
}

.table-image-count {
    position: absolute;
    bottom: 2px;
    right: 2px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 0.6rem;
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 600;
}

/* Kanban drag item thumbnail */
.drag-item-thumb {
    width: 100%;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--admin-bg);
}

.drag-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

/* ===== SEARCH ===== */
.search-box {
    display: flex;
    gap: 12px;
    align-items: center;
}

.search-box input {
    padding: 10px 16px;
    border: 2px solid var(--admin-border);
    border-radius: 10px;
    font-size: 0.88rem;
    width: 280px;
    transition: border-color 0.2s;
}

.search-box input:focus {
    border-color: var(--admin-primary);
    outline: none;
}

/* ===== LOGS TIMELINE ===== */
.log-entry {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--admin-border);
}

.log-entry:last-child {
    border-bottom: none;
}

.log-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.log-icon.insert { background: rgba(16,185,129,0.1); color: var(--admin-success); }
.log-icon.update { background: rgba(245,158,11,0.1); color: var(--admin-warning); }
.log-icon.delete { background: rgba(239,68,68,0.1); color: var(--admin-danger); }

.log-info {
    flex: 1;
}

.log-info .log-action {
    font-weight: 600;
    font-size: 0.85rem;
}

.log-info .log-detail {
    font-size: 0.78rem;
    color: var(--admin-text-light);
    margin-top: 2px;
}

.log-time {
    font-size: 0.72rem;
    color: var(--admin-text-light);
    white-space: nowrap;
}
