/* ==========================================
   MASTER ADMIN PORTAL STYLES (v0.42)
   ========================================== */
#admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(15px);
    z-index: 9999999 !important;
    display: none;
    align-items: center;
    justify-content: center;
    pointer-events: auto !important;
}

#admin-portal-card {
    width: 850px;
    max-width: 95vw;
    height: 85vh;
    background: #0d0d0d;
    border: 1px solid rgba(255, 161, 0, 0.4);
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Sometype Mono', monospace;
    pointer-events: auto !important;
}

/* Header */
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: rgba(255, 161, 0, 0.08);
    border-bottom: 1px solid rgba(255, 161, 0, 0.2);
}
.admin-header-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffa100;
    letter-spacing: 2px;
}
.admin-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.admin-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ffa100;
}
.admin-user-email {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}
.admin-close-btn {
    background: none;
    border: 1px solid rgba(255, 161, 0, 0.4);
    color: #ffa100;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.2s;
}
.admin-close-btn:hover { background: #ffa100; color: #000; }

/* Tabs */
.admin-tabs {
    display: flex;
    gap: 10px;
    padding: 12px 25px;
    background: #050505;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.admin-tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}
.admin-tab-btn.active, .admin-tab-btn:hover {
    background: rgba(255, 161, 0, 0.2);
    border-color: #ffa100;
    color: #ffa100;
}

/* Content Body */
.admin-body {
    flex: 1;
    padding: 25px;
    overflow-y: auto;
}
.admin-tab-pane { display: none; }
.admin-tab-pane.active { display: block; }

/* Forms & Inputs */
.admin-form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.admin-label {
    font-size: 0.75rem;
    color: #ffa100;
    font-weight: bold;
    letter-spacing: 1px;
}
.admin-input, .admin-textarea, .admin-select {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: inherit;
    outline: none;
    transition: border 0.2s;
}
.admin-input:focus, .admin-textarea:focus, .admin-select:focus {
    border-color: #ffa100;
}
.admin-textarea { height: 80px; resize: vertical; }

.admin-flex-row {
    display: flex;
    gap: 15px;
    align-items: center;
}
.admin-flex-row .admin-form-group { flex: 1; }

.admin-color-picker {
    width: 45px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    background: transparent;
}

/* Action Buttons */
.admin-btn-primary {
    background: #ffa100;
    color: #000000;
    font-weight: bold;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.2s;
}
.admin-btn-primary:hover { background: #ffb733; }

.admin-btn-danger {
    background: #ff3333;
    color: #ffffff;
    font-weight: bold;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.7rem;
}

.admin-btn-secondary {
    background: #252525;
    border: 1px solid #444;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.75rem;
}

/* Item Lists */
.admin-item-card {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: background 0.15s, border-color 0.15s;
}
.admin-item-card.selected {
    background: rgba(255, 161, 0, 0.08);
    border-color: rgba(255, 161, 0, 0.5);
}
.admin-item-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #ffa100;
    cursor: pointer;
    flex-shrink: 0;
}
.admin-item-thumb {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}
.admin-item-info { flex: 1; min-width: 0; }
.admin-item-title { font-weight: bold; color: #fff; font-size: 0.85rem; }
.admin-item-sub { font-size: 0.7rem; color: #888; margin-top: 2px; }

/* Search & Filter Toolbar */
.admin-toolbar {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.admin-search-input {
    flex: 2;
    min-width: 180px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: inherit;
    outline: none;
}
.admin-search-input:focus { border-color: #ffa100; }
.admin-filter-select {
    flex: 1;
    min-width: 120px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffa100;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: inherit;
    outline: none;
}

/* Bulk Action Bar (Sticky floating bar when items selected) */
#admin-bulk-bar {
    display: none;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(18, 20, 26, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid #ffa100;
    border-radius: 10px;
    padding: 10px 18px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 15px rgba(255,161,0,0.2);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.admin-bulk-badge {
    background: #ffa100;
    color: #000;
    font-weight: bold;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 1px;
}

/* Bulk Edit Modal Overlay */
.admin-submodal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.admin-submodal-card {
    width: 750px;
    max-width: 95vw;
    max-height: 90vh;
    background: #11141a;
    border: 1px solid #ffa100;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.95);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #fff;
    font-family: 'Sometype Mono', monospace;
}
.admin-submodal-header {
    padding: 16px 22px;
    background: rgba(255, 161, 0, 0.1);
    border-bottom: 1px solid rgba(255, 161, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-submodal-body {
    padding: 22px;
    overflow-y: auto;
    flex: 1;
}
.admin-submodal-footer {
    padding: 16px 22px;
    background: #0b0d11;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Email Live Preview Modal */
.admin-preview-modal-card {
    width: 760px;
    max-width: 95vw;
    height: 88vh;
    background: #0b0d12;
    border: 1px solid rgba(0, 255, 204, 0.4);
    border-radius: 18px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Sometype Mono', monospace;
}
.admin-preview-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
}
.admin-preview-modal-subject-bar {
    padding: 10px 22px;
    background: #13161f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.78rem;
}
.admin-preview-viewport-wrap {
    flex: 1;
    overflow-y: auto;
    background: #05070a;
    padding: 20px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.admin-preview-device-frame {
    width: 100%;
    max-width: 640px;
    height: 100%;
    min-height: 480px;
    max-height: 680px;
    background: #07080c;
    border: 1px solid rgba(255, 161, 0, 0.4);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.admin-preview-device-frame.desktop-mode {
    width: 100%;
    max-width: 640px;
    height: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 161, 0, 0.4);
}
.admin-preview-device-frame.mobile-mode {
    width: 375px;
    max-width: 375px;
    height: 667px;
    max-height: 100%;
    border-radius: 36px;
    border: 10px solid #141722;
    box-shadow: 0 0 0 2px rgba(0, 255, 204, 0.7), 0 25px 60px rgba(0, 0, 0, 0.95);
    position: relative;
}
.admin-preview-toggle-btn {
    background: transparent;
    color: #888888;
    border: none;
    padding: 5px 12px;
    font-size: 0.74rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}
.admin-preview-toggle-btn.active {
    background: #00ffcc;
    color: #000000;
}
.admin-preview-toggle-btn:hover:not(.active) {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* Bulk Field Toggle Row */
.bulk-field-toggle-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.03);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.08);
}
.bulk-field-toggle-row input[type="checkbox"] {
    accent-color: #ffa100;
    width: 18px;
    height: 18px;
    cursor: pointer;
}
.bulk-field-toggle-row .bulk-input-container {
    flex: 1;
}

/* Pagination Bar */
.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 6px;
    margin-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
    color: #888;
}
.admin-page-btn {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.75rem;
}
.admin-page-btn:hover:not(:disabled) {
    background: #ffa100;
    color: #000;
}
.admin-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Login Modal */
#admin-login-box {
    text-align: center;
    padding: 40px 20px;
}
.admin-google-btn {
    background: #ffffff;
    color: #000000;
    font-weight: bold;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transition: transform 0.2s;
}
.admin-google-btn:hover { transform: scale(1.04); }

/* License Terms Manager & Cards */
.admin-lic-card {
    background: #151518;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: 0.2s;
}
.admin-lic-card:hover {
    border-color: rgba(0, 255, 204, 0.4);
    background: #18181c;
}
.admin-lic-card.disabled {
    opacity: 0.55;
    border-color: rgba(255, 59, 48, 0.3);
}

/* Subscribers Table */
.admin-sub-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}
.admin-sub-table th {
    text-align: left;
    padding: 10px 12px;
    background: rgba(255, 161, 0, 0.08);
    color: #ffa100;
    border-bottom: 1px solid rgba(255, 161, 0, 0.2);
}
.admin-sub-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ddd;
}
.admin-sub-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Cloudflare R2 Card */
.admin-r2-box {
    background: #121318;
    border: 1px solid rgba(243, 128, 32, 0.35);
    border-radius: 12px;
    padding: 22px;
    margin-bottom: 20px;
}
.r2-badge {
    background: rgba(243, 128, 32, 0.15);
    border: 1px solid #f38020;
    color: #f38020;
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

/* In-App Web UI Notification Toast */
.admin-toast {
    position: fixed;
    top: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(-40px);
    z-index: 9999999999 !important;
    background: rgba(12, 14, 20, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 161, 0, 0.85);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 35px;
    font-size: 0.84rem;
    font-family: 'Sometype Mono', monospace;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.92), 0 0 25px rgba(255, 161, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    max-width: 90vw;
}
.admin-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* WYSIWYG Email Broadcast Suite Styles */
.email-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #11141a;
    border: 1px solid rgba(255, 161, 0, 0.3);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.email-tool-group {
    display: flex;
    align-items: center;
    gap: 3px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 8px;
    margin-right: 4px;
}
.email-tool-btn {
    background: transparent;
    border: 1px solid transparent;
    color: #cccccc;
    padding: 5px 9px;
    border-radius: 5px;
    font-size: 0.76rem;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.email-tool-btn:hover {
    background: rgba(255, 161, 0, 0.15);
    border-color: rgba(255, 161, 0, 0.4);
    color: #ffa100;
}
.email-tool-btn.active {
    background: #ffa100;
    color: #000000;
    border-color: #ffa100;
}
.email-editor-content {
    min-height: 280px;
    max-height: 520px;
    overflow-y: auto;
    background: #0a0c10;
    border: 1px solid rgba(255, 161, 0, 0.3);
    border-top: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 22px 26px;
    color: #e0e0e0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    outline: none;
}
.email-editor-content:empty:before {
    content: "Compose your HTML newsletter here... Click the toolbar tools above to format text, add release cards, or insert call-to-action buttons.";
    color: #555;
    pointer-events: none;
    display: block;
}
.email-editor-content h1 {
    color: #ffa100;
    font-size: 1.6rem;
    margin: 18px 0 10px;
    border-bottom: 1px solid rgba(255, 161, 0, 0.25);
    padding-bottom: 6px;
    font-family: 'Sometype Mono', monospace;
}
.email-editor-content h2 {
    color: #00ffcc;
    font-size: 1.3rem;
    margin: 16px 0 8px;
    font-family: 'Sometype Mono', monospace;
}
.email-editor-content h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 14px 0 6px;
    font-family: 'Sometype Mono', monospace;
}
.email-editor-content p {
    margin: 10px 0;
}
.email-editor-content blockquote {
    border-left: 3px solid #ffa100;
    margin: 14px 0;
    padding: 8px 16px;
    background: rgba(255, 161, 0, 0.06);
    color: #bbb;
    font-style: italic;
}
.email-editor-content a {
    color: #00ffcc;
    text-decoration: underline;
}
.email-editor-content ul, .email-editor-content ol {
    margin: 10px 0 10px 24px;
}
.email-editor-content .email-cta-btn {
    display: inline-block;
    background: #ffa100;
    color: #000000 !important;
    text-decoration: none !important;
    font-weight: 800;
    padding: 12px 26px;
    border-radius: 6px;
    margin: 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    font-family: 'Sometype Mono', monospace;
}
.email-editor-content .email-track-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 255, 204, 0.35);
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* DNS Guide Cards */
.dns-table-box {
    background: #0d0f14;
    border: 1px solid rgba(0, 255, 204, 0.25);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 12px;
}
.dns-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.76rem;
}
.dns-table th {
    background: rgba(0, 255, 204, 0.08);
    color: #00ffcc;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 204, 0.2);
}
.dns-table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #ddd;
    font-family: monospace;
}
.dns-badge-type {
    background: rgba(255, 161, 0, 0.15);
    border: 1px solid #ffa100;
    color: #ffa100;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.7rem;
}
.dns-badge-cname {
    background: rgba(0, 255, 204, 0.15);
    border: 1px solid #00ffcc;
    color: #00ffcc;
}
.dns-table-header {
    padding: 10px 15px;
    background: rgba(0, 255, 204, 0.12);
    border-bottom: 1px solid rgba(0, 255, 204, 0.25);
    font-size: 0.75rem;
    color: #00ffcc;
    font-weight: bold;
}

/* General Card Box & Headings */
.admin-card-box {
    background: #11141a;
    border: 1px solid rgba(255, 161, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
.admin-card-title-gold {
    color: #ffa100;
    font-weight: bold;
}
.admin-card-title-cyan {
    color: #00ffcc;
    font-weight: bold;
}
.admin-card-title-orange {
    color: #f38020;
    font-weight: bold;
}
.admin-card-desc {
    color: #aaaaaa;
}
.admin-input-hint {
    font-size: 0.68rem;
    color: #777777;
    margin-top: 3px;
    display: block;
}
.admin-guide-list {
    font-size: 0.8rem;
    color: #cccccc;
    line-height: 1.8;
    margin: 0;
    padding-left: 20px;
}
.admin-guide-list code {
    color: #00ffcc;
    background: rgba(0, 255, 204, 0.1);
    padding: 2px 5px;
    border-radius: 4px;
}

/* KPI Metrics Strip */
.admin-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.admin-kpi-card {
    border-radius: 10px;
    padding: 14px;
    background: #11141a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-kpi-card.kpi-card-cyan {
    background: rgba(0, 255, 204, 0.06);
    border: 1px solid rgba(0, 255, 204, 0.3);
}
.admin-kpi-card.kpi-card-gold {
    background: rgba(255, 161, 0, 0.06);
    border: 1px solid rgba(255, 161, 0, 0.3);
}
.admin-kpi-card.kpi-card-purple {
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid rgba(168, 85, 247, 0.3);
}
.admin-kpi-card.kpi-card-white {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.kpi-card-label {
    font-size: 0.68rem;
    color: #aaaaaa;
    letter-spacing: 1px;
    font-weight: bold;
}
.kpi-card-value {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 4px;
    color: #ffffff;
}
.kpi-card-value.kpi-val-cyan { color: #00ffcc; }
.kpi-card-value.kpi-val-gold { color: #ffa100; }
.kpi-card-value.kpi-val-purple { color: #c084fc; }
.kpi-card-value.kpi-val-white { color: #ffffff; }
.kpi-card-sub {
    font-size: 0.65rem;
    color: #777777;
    margin-top: 2px;
}

/* Table Containers & Empty States */
.admin-table-container {
    background: #0d0f14;
    border: 1px solid rgba(255, 161, 0, 0.25);
    border-radius: 10px;
    overflow: hidden;
}
.admin-table-empty-cell {
    text-align: center;
    color: #888888;
    padding: 25px;
}

/* Dispatch / Broadcast Banner */
.admin-broadcast-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 161, 0, 0.08);
    border: 1px solid rgba(255, 161, 0, 0.4);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}
.admin-broadcast-banner-title {
    font-weight: bold;
    color: #ffa100;
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.admin-broadcast-banner-desc {
    font-size: 0.75rem;
    color: #bbbbbb;
    margin-top: 4px;
}

/* ==========================================
   MASTER ADMIN THEME STYLES (v0.43)
   Themes: Default Dark Gold, Light Gold, Cyber Neon, High Contrast
   ========================================== */

/* Theme Switcher in Header */
.admin-theme-switcher-box {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 161, 0, 0.4);
    border-radius: 8px;
    padding: 3px 8px;
    transition: all 0.2s ease;
}
.admin-theme-switcher-box:hover {
    border-color: rgba(255, 161, 0, 0.8);
    background: rgba(0, 0, 0, 0.7);
}
.admin-theme-select {
    background: transparent;
    color: #ffa100;
    border: none;
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    padding: 2px 2px;
}
.admin-theme-select option {
    background: #111111;
    color: #ffffff;
}

/* -------------------------------------------------------------
   THEME 1: LIGHT GOLD (Optimized for Daylight & Bright Environments)
   ------------------------------------------------------------- */
body.theme-light-gold {
    background: #edf0f5 !important;
    color: #111827 !important;
}
body.theme-light-gold #standalone-admin-container,
body.theme-light-gold #admin-portal-card {
    background: #ffffff !important;
    border: 1px solid rgba(180, 115, 0, 0.35) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 20px rgba(255, 161, 0, 0.08) !important;
    color: #111827 !important;
}
body.theme-light-gold .admin-header {
    background: #fffbeb !important;
    border-bottom: 1px solid #fde68a !important;
}
body.theme-light-gold .admin-header-title {
    color: #92400e !important;
}
body.theme-light-gold .admin-user-email {
    color: #4b5563 !important;
}
body.theme-light-gold .admin-theme-switcher-box {
    background: #ffffff !important;
    border-color: #d97706 !important;
}
body.theme-light-gold .admin-theme-select {
    color: #92400e !important;
}
body.theme-light-gold .admin-theme-select option {
    background: #ffffff !important;
    color: #111827 !important;
}
body.theme-light-gold .admin-tabs {
    background: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
}
body.theme-light-gold .admin-tab-btn {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
    color: #475569 !important;
}
body.theme-light-gold .admin-tab-btn:hover {
    background: #fef3c7 !important;
    border-color: #d97706 !important;
    color: #92400e !important;
}
body.theme-light-gold .admin-tab-btn.active {
    background: #ffa100 !important;
    border-color: #d97706 !important;
    color: #000000 !important;
    box-shadow: 0 2px 8px rgba(255, 161, 0, 0.25) !important;
}
body.theme-light-gold .admin-body {
    background: #ffffff !important;
    color: #1f2937 !important;
}
body.theme-light-gold h2, 
body.theme-light-gold h3, 
body.theme-light-gold h4,
body.theme-light-gold .admin-label {
    color: #92400e !important;
}
body.theme-light-gold .admin-card-box {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
}
body.theme-light-gold .admin-card-title-gold {
    color: #92400e !important;
}
body.theme-light-gold .admin-card-title-cyan {
    color: #0f766e !important;
}
body.theme-light-gold .admin-card-title-orange {
    color: #c2410c !important;
}
body.theme-light-gold .admin-card-desc,
body.theme-light-gold .admin-input-hint {
    color: #64748b !important;
}
body.theme-light-gold .admin-guide-list {
    color: #334155 !important;
}
body.theme-light-gold .admin-guide-list code {
    color: #0f766e !important;
    background: #e6fffa !important;
    border: 1px solid #ccfbf1 !important;
}
body.theme-light-gold .admin-kpi-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04) !important;
}
body.theme-light-gold .kpi-card-label {
    color: #64748b !important;
}
body.theme-light-gold .kpi-card-value.kpi-val-cyan {
    color: #0f766e !important;
}
body.theme-light-gold .kpi-card-value.kpi-val-gold {
    color: #b45309 !important;
}
body.theme-light-gold .kpi-card-value.kpi-val-purple {
    color: #7e22ce !important;
}
body.theme-light-gold .kpi-card-value.kpi-val-white {
    color: #0f172a !important;
}
body.theme-light-gold .kpi-card-sub {
    color: #94a3b8 !important;
}
body.theme-light-gold .admin-broadcast-banner {
    background: #fffbeb !important;
    border: 1px solid #fde68a !important;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.08) !important;
}
body.theme-light-gold .admin-broadcast-banner-title {
    color: #92400e !important;
    font-weight: 800 !important;
}
body.theme-light-gold .admin-broadcast-banner-desc {
    color: #78350f !important;
}
body.theme-light-gold .admin-input,
body.theme-light-gold .admin-textarea,
body.theme-light-gold .admin-select,
body.theme-light-gold .admin-search-input,
body.theme-light-gold .admin-filter-select {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #111827 !important;
}
body.theme-light-gold .admin-input:focus,
body.theme-light-gold .admin-textarea:focus,
body.theme-light-gold .admin-select:focus,
body.theme-light-gold .admin-search-input:focus {
    border-color: #d97706 !important;
    box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.15) !important;
}
body.theme-light-gold .admin-toolbar {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
}
body.theme-light-gold .admin-item-card {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
}
body.theme-light-gold .admin-item-card:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
}
body.theme-light-gold .admin-item-card.selected {
    background: #fffbeb !important;
    border-color: #f59e0b !important;
}
body.theme-light-gold .admin-item-title {
    color: #0f172a !important;
}
body.theme-light-gold .admin-item-sub {
    color: #64748b !important;
}
body.theme-light-gold .admin-btn-secondary {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
    color: #1f2937 !important;
}
body.theme-light-gold .admin-btn-secondary:hover {
    background: #f1f5f9 !important;
    border-color: #94a3b8 !important;
}
body.theme-light-gold .admin-lic-card {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
}
body.theme-light-gold .admin-lic-card:hover {
    border-color: #0d9488 !important;
    background: #f0fdf4 !important;
}
body.theme-light-gold .admin-sub-table th {
    background: #fef3c7 !important;
    color: #92400e !important;
    border-bottom: 1px solid #fde68a !important;
}
body.theme-light-gold .admin-sub-table td {
    color: #1e293b !important;
    border-bottom: 1px solid #e2e8f0 !important;
}
body.theme-light-gold .admin-sub-table tr:hover td {
    background: #f8fafc !important;
}
body.theme-light-gold .admin-table-container,
body.theme-light-gold #admin-orders-table-container,
body.theme-light-gold #admin-subs-table-container,
body.theme-light-gold #admin-campaigns-table-container,
body.theme-light-gold #admin-track-form-box,
body.theme-light-gold #admin-card-edit-box,
body.theme-light-gold #admin-lic-form-box {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
}
body.theme-light-gold .admin-table-empty-cell {
    color: #64748b !important;
}
body.theme-light-gold .admin-submodal-card {
    background: #ffffff !important;
    border-color: #d97706 !important;
    color: #111827 !important;
}
body.theme-light-gold .admin-submodal-header {
    background: #fffbeb !important;
    border-bottom: 1px solid #fde68a !important;
}
body.theme-light-gold .bulk-field-toggle-row {
    background: #f8fafc !important;
    border-color: #e2e8f0 !important;
}
body.theme-light-gold .admin-submodal-footer {
    background: #f8fafc !important;
    border-top: 1px solid #e2e8f0 !important;
}
body.theme-light-gold .admin-r2-box {
    background: #fffaf5 !important;
    border-color: #fed7aa !important;
}
body.theme-light-gold .r2-badge {
    background: #fff7ed !important;
    border-color: #f97316 !important;
    color: #ea580c !important;
}
body.theme-light-gold .admin-toast {
    background: #ffffff !important;
    color: #111827 !important;
    border-color: #d97706 !important;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.15) !important;
}
body.theme-light-gold .email-toolbar {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
}
body.theme-light-gold .email-tool-btn {
    color: #475569 !important;
}
body.theme-light-gold .email-tool-btn:hover {
    background: #fef3c7 !important;
    color: #92400e !important;
}
body.theme-light-gold .email-tool-btn.active {
    background: #ffa100 !important;
    color: #000000 !important;
}
body.theme-light-gold .email-editor-content {
    background: #ffffff !important;
    color: #111827 !important;
    border-color: #cbd5e1 !important;
}
body.theme-light-gold .dns-table-box {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
}
body.theme-light-gold .dns-table-header {
    background: #f0fdfa !important;
    border-bottom: 1px solid #ccfbf1 !important;
    color: #0f766e !important;
}
body.theme-light-gold .dns-table th {
    background: #f8fafc !important;
    color: #0f766e !important;
    border-bottom: 1px solid #e2e8f0 !important;
}
body.theme-light-gold .dns-table td {
    color: #1e293b !important;
    border-bottom: 1px solid #f1f5f9 !important;
}
body.theme-light-gold .dns-badge-type {
    background: #fffbeb !important;
    border-color: #f59e0b !important;
    color: #b45309 !important;
}
body.theme-light-gold .dns-badge-cname {
    background: #f0fdfa !important;
    border-color: #14b8a6 !important;
    color: #0f766e !important;
}
body.theme-light-gold .admin-preview-modal-card {
    background: #ffffff !important;
    border-color: #d97706 !important;
    color: #111827 !important;
}
body.theme-light-gold .admin-preview-modal-header {
    background: #fffbeb !important;
    border-bottom: 1px solid #fde68a !important;
}
body.theme-light-gold .admin-preview-modal-subject-bar {
    background: #f8fafc !important;
    border-bottom: 1px solid #e2e8f0 !important;
}
body.theme-light-gold .admin-preview-viewport-wrap {
    background: #e2e8f0 !important;
}
body.theme-light-gold .admin-preview-toggle-btn.active {
    background: #ffa100 !important;
    color: #000000 !important;
}
body.theme-light-gold .admin-preview-device-frame.desktop-mode {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}
body.theme-light-gold .admin-preview-device-frame.mobile-mode {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 0 0 2px #d97706, 0 15px 45px rgba(0, 0, 0, 0.15) !important;
}

/* -------------------------------------------------------------
   THEME 2: CYBER NEON / MATRIX EMERALD
   ------------------------------------------------------------- */
body.theme-cyber-neon {
    background: #020b0e !important;
    color: #d1fae5 !important;
}
body.theme-cyber-neon #standalone-admin-container,
body.theme-cyber-neon #admin-portal-card {
    background: #041217 !important;
    border: 1px solid rgba(0, 255, 204, 0.5) !important;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 30px rgba(0, 255, 204, 0.15) !important;
    color: #d1fae5 !important;
}
body.theme-cyber-neon .admin-header {
    background: rgba(0, 255, 204, 0.08) !important;
    border-bottom: 1px solid rgba(0, 255, 204, 0.25) !important;
}
body.theme-cyber-neon .admin-header-title {
    color: #00ffcc !important;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.5) !important;
}
body.theme-cyber-neon .admin-user-email {
    color: rgba(0, 255, 204, 0.75) !important;
}
body.theme-cyber-neon .admin-theme-switcher-box {
    background: rgba(0, 255, 204, 0.08) !important;
    border-color: rgba(0, 255, 204, 0.4) !important;
}
body.theme-cyber-neon .admin-theme-select {
    color: #00ffcc !important;
}
body.theme-cyber-neon .admin-theme-select option {
    background: #041217 !important;
    color: #00ffcc !important;
}
body.theme-cyber-neon .admin-tabs {
    background: #020b0e !important;
    border-bottom: 1px solid rgba(0, 255, 204, 0.15) !important;
}
body.theme-cyber-neon .admin-tab-btn {
    background: transparent !important;
    border-color: rgba(0, 255, 204, 0.25) !important;
    color: rgba(0, 255, 204, 0.7) !important;
}
body.theme-cyber-neon .admin-tab-btn:hover {
    background: rgba(0, 255, 204, 0.15) !important;
    border-color: #00ffcc !important;
    color: #00ffcc !important;
}
body.theme-cyber-neon .admin-tab-btn.active {
    background: rgba(0, 255, 204, 0.22) !important;
    border-color: #00ffcc !important;
    color: #00ffcc !important;
    box-shadow: 0 0 12px rgba(0, 255, 204, 0.3) !important;
}
body.theme-cyber-neon .admin-body {
    background: #041217 !important;
    color: #d1fae5 !important;
}
body.theme-cyber-neon h2,
body.theme-cyber-neon h3,
body.theme-cyber-neon h4,
body.theme-cyber-neon .admin-label {
    color: #00ffcc !important;
}
body.theme-cyber-neon .admin-card-box {
    background: #061920 !important;
    border: 1px solid rgba(0, 255, 204, 0.35) !important;
}
body.theme-cyber-neon .admin-card-title-gold,
body.theme-cyber-neon .admin-card-title-cyan,
body.theme-cyber-neon .admin-card-title-orange {
    color: #00ffcc !important;
}
body.theme-cyber-neon .admin-card-desc,
body.theme-cyber-neon .admin-input-hint {
    color: #5eead4 !important;
}
body.theme-cyber-neon .admin-guide-list {
    color: #ccfbf1 !important;
}
body.theme-cyber-neon .admin-guide-list code {
    color: #00ffcc !important;
    background: rgba(0, 255, 204, 0.15) !important;
}
body.theme-cyber-neon .admin-kpi-card {
    background: #061920 !important;
    border: 1px solid rgba(0, 255, 204, 0.3) !important;
}
body.theme-cyber-neon .kpi-card-label {
    color: #5eead4 !important;
}
body.theme-cyber-neon .kpi-card-value {
    color: #00ffcc !important;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.4) !important;
}
body.theme-cyber-neon .kpi-card-sub {
    color: #2dd4bf !important;
}
body.theme-cyber-neon .admin-broadcast-banner {
    background: rgba(0, 255, 204, 0.08) !important;
    border: 1px solid rgba(0, 255, 204, 0.4) !important;
}
body.theme-cyber-neon .admin-broadcast-banner-title {
    color: #00ffcc !important;
    text-shadow: 0 0 8px rgba(0, 255, 204, 0.4) !important;
}
body.theme-cyber-neon .admin-broadcast-banner-desc {
    color: #a7f3d0 !important;
}
body.theme-cyber-neon .admin-input,
body.theme-cyber-neon .admin-textarea,
body.theme-cyber-neon .admin-select,
body.theme-cyber-neon .admin-search-input,
body.theme-cyber-neon .admin-filter-select {
    background: #061920 !important;
    border: 1px solid rgba(0, 255, 204, 0.3) !important;
    color: #e0fdfa !important;
}
body.theme-cyber-neon .admin-input:focus,
body.theme-cyber-neon .admin-textarea:focus,
body.theme-cyber-neon .admin-select:focus,
body.theme-cyber-neon .admin-search-input:focus {
    border-color: #00ffcc !important;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.3) !important;
}
body.theme-cyber-neon .admin-toolbar {
    background: #051820 !important;
    border-color: rgba(0, 255, 204, 0.25) !important;
}
body.theme-cyber-neon .admin-item-card {
    background: #061820 !important;
    border-color: rgba(0, 255, 204, 0.2) !important;
}
body.theme-cyber-neon .admin-item-card:hover {
    background: #08212c !important;
    border-color: #00ffcc !important;
}
body.theme-cyber-neon .admin-item-card.selected {
    background: rgba(0, 255, 204, 0.12) !important;
    border-color: #00ffcc !important;
}
body.theme-cyber-neon .admin-item-title {
    color: #ffffff !important;
}
body.theme-cyber-neon .admin-item-sub {
    color: #5eead4 !important;
}
body.theme-cyber-neon .admin-btn-primary {
    background: #00ffcc !important;
    color: #020b0e !important;
    border-color: #00ffcc !important;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.35) !important;
}
body.theme-cyber-neon .admin-btn-secondary {
    background: #071f28 !important;
    border-color: rgba(0, 255, 204, 0.4) !important;
    color: #00ffcc !important;
}
body.theme-cyber-neon .admin-btn-secondary:hover {
    background: rgba(0, 255, 204, 0.2) !important;
    border-color: #00ffcc !important;
}
body.theme-cyber-neon .admin-sub-table th {
    background: rgba(0, 255, 204, 0.12) !important;
    color: #00ffcc !important;
    border-bottom: 1px solid rgba(0, 255, 204, 0.3) !important;
}
body.theme-cyber-neon .admin-sub-table td {
    color: #ccfbf1 !important;
    border-bottom: 1px solid rgba(0, 255, 204, 0.1) !important;
}
body.theme-cyber-neon .admin-sub-table tr:hover td {
    background: rgba(0, 255, 204, 0.05) !important;
}
body.theme-cyber-neon .admin-table-container,
body.theme-cyber-neon #admin-orders-table-container,
body.theme-cyber-neon #admin-subs-table-container,
body.theme-cyber-neon #admin-campaigns-table-container,
body.theme-cyber-neon #admin-track-form-box,
body.theme-cyber-neon #admin-card-edit-box,
body.theme-cyber-neon #admin-lic-form-box {
    background: #061920 !important;
    border-color: rgba(0, 255, 204, 0.3) !important;
}
body.theme-cyber-neon .admin-table-empty-cell {
    color: #5eead4 !important;
}
body.theme-cyber-neon .admin-submodal-footer {
    background: #061920 !important;
    border-top: 1px solid rgba(0, 255, 204, 0.2) !important;
}
body.theme-cyber-neon .admin-toast {
    background: rgba(4, 18, 23, 0.96) !important;
    color: #e0fdfa !important;
    border-color: #00ffcc !important;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.95), 0 0 25px rgba(0, 255, 204, 0.4) !important;
}
body.theme-cyber-neon .email-toolbar {
    background: #061920 !important;
    border-color: rgba(0, 255, 204, 0.3) !important;
}
body.theme-cyber-neon .email-tool-btn {
    color: #5eead4 !important;
}
body.theme-cyber-neon .email-tool-btn:hover {
    background: rgba(0, 255, 204, 0.15) !important;
    color: #00ffcc !important;
}
body.theme-cyber-neon .email-tool-btn.active {
    background: #00ffcc !important;
    color: #020b0e !important;
}
body.theme-cyber-neon .email-editor-content {
    background: #030e12 !important;
    border-color: rgba(0, 255, 204, 0.3) !important;
    color: #e0fdfa !important;
}
body.theme-cyber-neon .dns-table-box {
    background: #061920 !important;
    border-color: rgba(0, 255, 204, 0.35) !important;
}
body.theme-cyber-neon .dns-table-header {
    background: rgba(0, 255, 204, 0.15) !important;
    border-bottom: 1px solid rgba(0, 255, 204, 0.3) !important;
    color: #00ffcc !important;
}
body.theme-cyber-neon .admin-preview-modal-card {
    background: #041217 !important;
    border-color: rgba(0, 255, 204, 0.5) !important;
    color: #d1fae5 !important;
}
body.theme-cyber-neon .admin-preview-modal-header {
    background: rgba(0, 255, 204, 0.08) !important;
    border-bottom: 1px solid rgba(0, 255, 204, 0.25) !important;
}
body.theme-cyber-neon .admin-preview-modal-subject-bar {
    background: #061920 !important;
    border-bottom: 1px solid rgba(0, 255, 204, 0.2) !important;
}
body.theme-cyber-neon .admin-preview-viewport-wrap {
    background: #020b0e !important;
}
body.theme-cyber-neon .admin-preview-toggle-btn.active {
    background: #00ffcc !important;
    color: #020b0e !important;
}
body.theme-cyber-neon .admin-preview-device-frame.desktop-mode {
    background: #041217 !important;
    border-color: rgba(0, 255, 204, 0.4) !important;
}
body.theme-cyber-neon .admin-preview-device-frame.mobile-mode {
    background: #041217 !important;
    border-color: #08212c !important;
    box-shadow: 0 0 0 2px #00ffcc, 0 25px 60px rgba(0, 0, 0, 0.95) !important;
}

/* -------------------------------------------------------------
   THEME 3: HIGH CONTRAST (Monochrome, Stark Black & Pure Gold/Yellow)
   ------------------------------------------------------------- */
body.theme-high-contrast {
    background: #000000 !important;
    color: #ffffff !important;
}
body.theme-high-contrast #standalone-admin-container,
body.theme-high-contrast #admin-portal-card {
    background: #000000 !important;
    border: 2px solid #ffcc00 !important;
    box-shadow: 0 0 0 1px #ffffff, 0 25px 70px rgba(0,0,0,1) !important;
    color: #ffffff !important;
}
body.theme-high-contrast .admin-header {
    background: #000000 !important;
    border-bottom: 2px solid #ffcc00 !important;
}
body.theme-high-contrast .admin-header-title {
    color: #ffff00 !important;
    font-weight: 900 !important;
}
body.theme-high-contrast .admin-user-email {
    color: #ffffff !important;
    font-weight: bold !important;
}
body.theme-high-contrast .admin-theme-switcher-box {
    background: #000000 !important;
    border: 2px solid #ffffff !important;
}
body.theme-high-contrast .admin-theme-select {
    color: #ffff00 !important;
    font-weight: 900 !important;
}
body.theme-high-contrast .admin-theme-select option {
    background: #000000 !important;
    color: #ffffff !important;
}
body.theme-high-contrast .admin-tabs {
    background: #000000 !important;
    border-bottom: 2px solid #ffffff !important;
}
body.theme-high-contrast .admin-tab-btn {
    background: #000000 !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    font-weight: bold !important;
}
body.theme-high-contrast .admin-tab-btn:hover {
    background: #222222 !important;
    border-color: #ffff00 !important;
    color: #ffff00 !important;
}
body.theme-high-contrast .admin-tab-btn.active {
    background: #ffff00 !important;
    border-color: #ffffff !important;
    color: #000000 !important;
    font-weight: 900 !important;
}
body.theme-high-contrast .admin-body {
    background: #000000 !important;
    color: #ffffff !important;
}
body.theme-high-contrast h2,
body.theme-high-contrast h3,
body.theme-high-contrast h4,
body.theme-high-contrast .admin-label {
    color: #ffff00 !important;
    font-weight: 900 !important;
}
body.theme-high-contrast .admin-card-box {
    background: #000000 !important;
    border: 2px solid #ffffff !important;
}
body.theme-high-contrast .admin-card-title-gold,
body.theme-high-contrast .admin-card-title-cyan,
body.theme-high-contrast .admin-card-title-orange {
    color: #ffff00 !important;
    font-weight: 900 !important;
}
body.theme-high-contrast .admin-card-desc,
body.theme-high-contrast .admin-input-hint {
    color: #dddddd !important;
    font-weight: bold !important;
}
body.theme-high-contrast .admin-guide-list {
    color: #ffffff !important;
}
body.theme-high-contrast .admin-guide-list code {
    color: #ffff00 !important;
    background: #000000 !important;
    border: 1px solid #ffff00 !important;
}
body.theme-high-contrast .admin-kpi-card {
    background: #000000 !important;
    border: 2px solid #ffffff !important;
}
body.theme-high-contrast .kpi-card-label {
    color: #ffff00 !important;
    font-weight: 900 !important;
}
body.theme-high-contrast .kpi-card-value {
    color: #ffffff !important;
    font-weight: 900 !important;
}
body.theme-high-contrast .kpi-card-sub {
    color: #dddddd !important;
}
body.theme-high-contrast .admin-broadcast-banner {
    background: #000000 !important;
    border: 2px solid #ffff00 !important;
}
body.theme-high-contrast .admin-broadcast-banner-title {
    color: #ffff00 !important;
    font-weight: 900 !important;
}
body.theme-high-contrast .admin-broadcast-banner-desc {
    color: #ffffff !important;
}
body.theme-high-contrast .admin-input,
body.theme-high-contrast .admin-textarea,
body.theme-high-contrast .admin-select,
body.theme-high-contrast .admin-search-input,
body.theme-high-contrast .admin-filter-select {
    background: #000000 !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    font-weight: bold !important;
}
body.theme-high-contrast .admin-input:focus,
body.theme-high-contrast .admin-textarea:focus,
body.theme-high-contrast .admin-select:focus,
body.theme-high-contrast .admin-search-input:focus {
    border-color: #ffff00 !important;
    box-shadow: 0 0 0 2px #ffff00 !important;
}
body.theme-high-contrast .admin-toolbar {
    background: #000000 !important;
    border: 2px solid #ffffff !important;
}
body.theme-high-contrast .admin-item-card {
    background: #000000 !important;
    border: 2px solid #666666 !important;
}
body.theme-high-contrast .admin-item-card:hover {
    border-color: #ffff00 !important;
}
body.theme-high-contrast .admin-item-card.selected {
    background: #1a1a00 !important;
    border-color: #ffff00 !important;
}
body.theme-high-contrast .admin-item-title {
    color: #ffffff !important;
}
body.theme-high-contrast .admin-item-sub {
    color: #dddddd !important;
}
body.theme-high-contrast .admin-btn-primary {
    background: #ffff00 !important;
    color: #000000 !important;
    border: 2px solid #ffffff !important;
    font-weight: 900 !important;
}
body.theme-high-contrast .admin-btn-secondary {
    background: #000000 !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    font-weight: bold !important;
}
body.theme-high-contrast .admin-btn-secondary:hover {
    background: #222222 !important;
    color: #ffff00 !important;
    border-color: #ffff00 !important;
}
body.theme-high-contrast .admin-sub-table th {
    background: #1a1a1a !important;
    color: #ffff00 !important;
    border-bottom: 2px solid #ffffff !important;
}
body.theme-high-contrast .admin-sub-table td {
    color: #ffffff !important;
    border-bottom: 1px solid #444444 !important;
}
body.theme-high-contrast .admin-sub-table tr:hover td {
    background: #111111 !important;
}
body.theme-high-contrast .admin-table-container,
body.theme-high-contrast #admin-orders-table-container,
body.theme-high-contrast #admin-subs-table-container,
body.theme-high-contrast #admin-campaigns-table-container,
body.theme-high-contrast #admin-track-form-box,
body.theme-high-contrast #admin-card-edit-box,
body.theme-high-contrast #admin-lic-form-box {
    background: #000000 !important;
    border: 2px solid #ffffff !important;
}
body.theme-high-contrast .admin-table-empty-cell {
    color: #ffffff !important;
}
body.theme-high-contrast .admin-submodal-footer {
    background: #000000 !important;
    border-top: 2px solid #ffffff !important;
}
body.theme-high-contrast .admin-toast {
    background: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #ffff00 !important;
    box-shadow: 0 0 20px #ffff00 !important;
}
body.theme-high-contrast .email-toolbar {
    background: #000000 !important;
    border: 2px solid #ffffff !important;
}
body.theme-high-contrast .email-tool-btn {
    color: #ffffff !important;
}
body.theme-high-contrast .email-tool-btn:hover {
    background: #222222 !important;
    color: #ffff00 !important;
}
body.theme-high-contrast .email-tool-btn.active {
    background: #ffff00 !important;
    color: #000000 !important;
}
body.theme-high-contrast .email-editor-content {
    background: #000000 !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
}
body.theme-high-contrast .dns-table-box {
    background: #000000 !important;
    border: 2px solid #ffffff !important;
}
body.theme-high-contrast .dns-table-header {
    background: #000000 !important;
    border-bottom: 2px solid #ffffff !important;
    color: #ffff00 !important;
    font-weight: 900 !important;
}
body.theme-high-contrast .dns-badge-type,
body.theme-high-contrast .dns-badge-cname {
    background: #000000 !important;
    border: 2px solid #ffff00 !important;
    color: #ffff00 !important;
    font-weight: 900 !important;
}
body.theme-high-contrast .admin-preview-modal-card {
    background: #000000 !important;
    border: 2px solid #ffff00 !important;
    color: #ffffff !important;
}
body.theme-high-contrast .admin-preview-modal-header {
    background: #000000 !important;
    border-bottom: 2px solid #ffffff !important;
}
body.theme-high-contrast .admin-preview-modal-subject-bar {
    background: #000000 !important;
    border-bottom: 2px solid #ffffff !important;
}
body.theme-high-contrast .admin-preview-viewport-wrap {
    background: #000000 !important;
}
body.theme-high-contrast .admin-preview-toggle-btn.active {
    background: #ffff00 !important;
    color: #000000 !important;
}
body.theme-high-contrast .admin-preview-device-frame.desktop-mode {
    background: #000000 !important;
    border: 2px solid #ffffff !important;
}
body.theme-high-contrast .admin-preview-device-frame.mobile-mode {
    background: #000000 !important;
    border: 8px solid #ffffff !important;
    box-shadow: 0 0 0 2px #ffff00 !important;
}




