/* Reseller panel – electric blue theme (matches style.css) */
:root {
    --reseller-radius: 12px;
}

/* Use global theme vars from style.css; reseller components stay consistent */
.reseller-alert {
    padding: 0.75rem 1.25rem;
    border-radius: var(--reseller-radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}
.reseller-alert-warning {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.15) 100%);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.5);
}
[data-theme="dark"] .reseller-alert-warning,
html[data-theme="dark"] .reseller-alert-warning {
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.6) 0%, rgba(146, 64, 14, 0.5) 100%);
    color: #fef3c7;
    border-color: rgba(245, 158, 11, 0.5);
}
.btn-copy {
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    border-radius: 6px;
    border: 1px solid var(--blue-electric, #0ea5e9);
    background: transparent;
    color: var(--blue-bright, #38bdf8);
    cursor: pointer;
    transition: all 0.2s;
}
.btn-copy:hover {
    background: var(--blue-electric, #0ea5e9);
    color: #fff;
}
.reseller-table-wrap {
    overflow-x: auto;
    border-radius: var(--reseller-radius);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 16px rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
}
.reseller-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card, rgba(15, 23, 42, 0.85));
    color: var(--text-primary, #f0f9ff);
}
.reseller-table th,
.reseller-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(56, 189, 248, 0.12);
}
.reseller-table th {
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted, #94a3b8);
    background: rgba(30, 41, 59, 0.9);
}
.reseller-table tbody tr:hover td {
    background: rgba(30, 41, 59, 0.5);
}
.theme-toggle {
    background: transparent;
    border: 1px solid rgba(56, 189, 248, 0.4);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-primary, #f0f9ff);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.theme-toggle:hover {
    border-color: var(--blue-electric, #0ea5e9);
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.2);
}
