/* /static/css/components/admin.css */
.admin-btn {
    padding: 6px 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s;
    background: white;
    color: #374151;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.admin-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.admin-btn:active {
    transform: translateY(0);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Button variants */
.admin-btn--preview:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.admin-btn--reset:hover {
    border-color: #f59e0b;
    color: #f59e0b;
}

.admin-btn--delete:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* Admin table specific */
.admin-table {
    font-size: 13px;
    border-collapse: separate;
    border-spacing: 0;
}

.admin-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #475569;
    border-bottom: 2px solid #e2e8f0;
    padding: 12px 15px;
    text-align: left;
}

.admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    vertical-align: middle;
}

.admin-table tr:hover {
    background: #f8fafc;
}

/* Admin status badges */
.admin-status-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.admin-status-pending {
    background: #fef3c7;
    color: #92400e;
    border-color: #fcd34d;
}

.admin-status-cached {
    background: #d1fae5;
    color: #065f46;
    border-color: #34d399;
}

.admin-status-processing {
    background: #dbeafe;
    color: #1e40af;
    border-color: #60a5fa;
}

/* In admin.css */
.admin-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Make buttons same height with icons */
.admin-btn {
    padding: 8px 12px;
    align-items: center;
}