/**
 * ArmorPro Lite Admin Styles
 * WordPress native aesthetic
 */

/* ==========================================================================
   Font Faces
   ========================================================================== */

@font-face {
    font-family: 'Inter';
    src: url('../../assets/fonts/inter-400.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../../assets/fonts/inter-500.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../../assets/fonts/inter-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   WordPress Admin Menu Icon
   ========================================================================== */

#adminmenu div.wp-menu-image.svg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px auto;
}

/* ==========================================================================
   Design System - CSS Custom Properties
   ========================================================================== */

:root {
    /* Typography */
    --armor-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --armor-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Brand Colors */
    --armor-primary: #2c3338;
    --armor-primary-dark: #1d2327;
    --armor-primary-hover: #1d2327;

    /* Semantic Colors */
    --armor-success: #43b98c;
    --armor-success-dark: #328d6a;
    --armor-success-hover: #328d6a;
    --armor-success-light: #7dd4b0;
    --armor-success-bg: #edf8f2;
    --armor-success-border: #a0dcc1;
    --armor-success-text: #328d6a;

    --armor-danger: #FF0055;
    --armor-danger-dark: #e6004d;
    --armor-danger-hover: #CC0044;
    --armor-danger-bg: #fef2f2;
    --armor-danger-border: #fecaca;
    --armor-danger-text: #991b1b;

    --armor-warning: #f59e0b;
    --armor-warning-dark: #d97706;
    --armor-warning-bg: #fffbeb;
    --armor-warning-border: #fcd34d;
    --armor-warning-text: #92400e;

    --armor-info: #3b82f6;
    --armor-info-dark: #2563eb;
    --armor-info-bg: #eff6ff;
    --armor-info-border: #93c5fd;
    --armor-info-text: #1e40af;

    /* Text Colors */
    --armor-text-primary: #1d2327;
    --armor-text-secondary: #646970;
    --armor-text-muted: #6b7280;
    --armor-text-light: #9ca3af;
    --armor-text-inverse: #fff;

    /* Background Colors */
    --armor-bg-white: #fff;
    --armor-bg-light: #f9fafb;
    --armor-bg-subtle: #f6f7f7;
    --armor-bg-muted: #f3f4f6;
    --armor-bg-dark: #1d2327;
    --armor-bg-card: #fff;

    /* Border Colors */
    --armor-border: #e5e7eb;
    --armor-border-light: #f0f0f1;
    --armor-border-dark: #d1d5db;
    --armor-border-wp: #dcdcde;

    /* Sidebar */
    --armor-sidebar-bg: #1d2327;
    --armor-sidebar-text: #a7aaad;
    --armor-sidebar-text-muted: #8c8f94;
    --armor-sidebar-hover: #2c3338;

    /* Shadows - Minimal/flat design */
    --armor-shadow-sm: none;
    --armor-shadow: none;
    --armor-shadow-md: none;
    --armor-shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --armor-radius: 5px;
    --armor-radius-lg: 8px;
    --armor-radius-xl: 10px;

    /* Transitions */
    --armor-transition: 0.15s ease;
    --armor-transition-slow: 0.2s ease;

    /* Focus Ring */
    --armor-focus-ring: 0 0 0 3px rgba(44, 51, 56, 0.1);
    --armor-focus-ring-success: 0 0 0 3px rgba(67, 214, 133, 0.1);
    --armor-focus-ring-danger: 0 0 0 3px rgba(255, 0, 85, 0.1);
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
.armor-wrap {
    display: flex;
    max-width: 1300px;
    margin: 20px auto 20px 0;
    background: var(--armor-bg-white) !important;
    border: 1px solid var(--armor-border);
    min-height: calc(100vh - 100px);
    border-radius: var(--armor-radius-lg);
    overflow: hidden;
    font-family: var(--armor-font-body);
}

/* Sidebar */
.armor-sidebar {
    width: 220px;
    background: var(--armor-sidebar-bg);
    flex-shrink: 0;
    position: relative;
    border-radius: var(--armor-radius-lg) 0 0 var(--armor-radius-lg);
}

.armor-sidebar-header {
    padding: 25px 30px 20px 30px;
    position: relative;
    border-top: 5px solid var(--armor-success);
}

.armor-logo {
    display: flex;
    align-items: center;
}

.armor-logo img {
    width: auto;
    height: 25px;
}

.armor-logo::before {
    display: none;
}

.armor-logo-text {
    color: var(--armor-text-inverse);
    font-size: 14px;
    font-weight: 600;
}

.armor-sidebar-footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.armor-sidebar-meta {
    font-size: 13px;
    color: var(--armor-sidebar-text-muted);
    margin-top: 8px;
}

.armor-version {
    color: var(--armor-sidebar-text-muted);
}

.armor-separator {
    color: var(--armor-sidebar-text-muted);
    margin: 0 6px;
}

.armor-sidebar-feedback {
    color: var(--armor-sidebar-text-muted);
    text-decoration: underline;
}

.armor-sidebar-feedback:hover {
    color: var(--armor-success-dark);
}

.armor-nav {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.armor-nav li {
    margin: 0;
}

.armor-nav-link {
    display: block;
    padding: 12px 27px;
    color: var(--armor-sidebar-text);
    text-decoration: none;
    transition: all var(--armor-transition);
    border-left: 3px solid transparent;
    font-size: 14px;
}

.armor-nav-link:focus,
.armor-nav-link:focus-visible {
    outline: none;
    box-shadow: none;
}

.armor-nav-link:hover {
    background: var(--armor-sidebar-hover);
    color: var(--armor-text-inverse);
}

.armor-nav-link.active {
    background: var(--armor-sidebar-hover);
    color: var(--armor-text-inverse);
    border-left-color: var(--armor-success);
}

/* Main Content */
.armor-main {
    flex: 1;
    padding: 34px 30px;
    overflow-y: auto;
    background: var(--armor-bg-white);
    border-radius: 0 var(--armor-radius-lg) var(--armor-radius-lg) 0;
}

.armor-page-header {
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.armor-page-header-content {
    flex: 1;
}

.armor-page-header-actions {
    flex-shrink: 0;
    margin-left: 20px;
}

.armor-page-header h1 {
    font-family: var(--armor-font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--armor-text-primary);
    margin: 0 0 5px 0;
    padding: 0;
    letter-spacing: -0.03em;
}

.armor-page-header p {
    font-size: 13px;
    color: var(--armor-text-secondary);
    margin: 0;
}

.armor-firewall-mode-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--armor-success);
    color: #fff;
    vertical-align: middle;
    margin-left: 8px;
    position: relative;
    top: -2px;
}

button.armor-btn-sm,
a.armor-btn-sm,
button.armor-btn-small,
a.armor-btn-small {
    padding: 4px 10px;
    font-size: 13px;
}

button.armor-btn-tiny,
a.armor-btn-tiny {
    padding: 2px 8px;
    font-size: 13px;
}

/* Tabs */
.armor-tab {
    display: none;
}

.armor-tab.active {
    display: block;
    animation: armor-tab-in 0.25s ease;
}

@keyframes armor-tab-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Cards */
.armor-card {
    background: var(--armor-bg-card);
    border: 1px solid var(--armor-border);
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}

.armor-card-header {
    padding: 14px 20px;
    background: var(--armor-sidebar-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 30px;
}

.armor-card-header h2 {
    font-family: var(--armor-font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--armor-text-inverse);
    margin: 0;
    padding: 0;
}

.armor-card-header .armor-btn {
    background: rgba(255, 255, 255, 0.15);
    color: var(--armor-text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.armor-card-header .armor-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.armor-card-body {
    padding: 14px 20px 20px;
    background: var(--armor-bg-card);
}

.armor-card-body > :first-child {
    margin-top: 0;
}

.armor-card-description {
    color: var(--armor-text-secondary);
    font-size: 13px;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.armor-inline-settings {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.armor-inline-setting {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.armor-inline-setting label {
    font-size: 13px;
    font-weight: 500;
    color: var(--armor-text-primary);
}

.armor-inline-setting select {
    min-width: 150px;
    padding: 8px 12px;
    border: 1px solid var(--armor-border);
    border-radius: var(--armor-radius);
    font-size: 13px;
    background: var(--armor-bg-white);
    transition: border-color var(--armor-transition), box-shadow var(--armor-transition);
}

.armor-inline-setting select:hover {
    border-color: var(--armor-border-dark);
}

.armor-inline-setting select:focus {
    border-color: var(--armor-primary);
    outline: none;
    box-shadow: var(--armor-focus-ring);
}

.armor-setting-hint {
    color: var(--armor-text-secondary);
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

/* Stats Grid */
.armor-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.armor-stats-3 {
    grid-template-columns: repeat(3, 1fr);
}

.armor-stat-card {
    background: var(--armor-bg-card);
    border: 1px solid var(--armor-border);
    padding: 24px 20px;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.armor-stat-value {
    font-family: var(--armor-font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--armor-text-primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.armor-stat-label {
    color: var(--armor-text-muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
}

.armor-stat-blocked .armor-stat-value {
    color: var(--armor-danger);
}

.armor-stat-blocked {
    border-color: rgba(255, 0, 85, 0.2);
    background: rgba(255, 0, 85, 0.02);
}

.armor-stat-default .armor-stat-value {
    color: var(--armor-text-primary);
}

/* Status Grid */
.armor-status-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.armor-status-item {
    display: flex;
    align-items: stretch;
    border-radius: var(--armor-radius-lg);
    overflow: hidden;
}

.armor-status-item.status-enabled {
    background: #f0faf5;
}

.armor-status-item.status-disabled {
    background: var(--armor-bg-light);
}

.armor-status-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.armor-status-icon.enabled {
    color: var(--armor-success);
    background: rgba(52, 211, 153, 0.15);
}

.armor-status-icon.disabled {
    color: var(--armor-danger);
    background: rgba(0, 0, 0, 0.04);
}

.armor-status-icon svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

.armor-status-text {
    flex: 1;
    padding: 10px 14px 10px 10px;
}

.armor-status-label {
    font-weight: 500;
    font-size: 13px;
    color: var(--armor-text-primary);
    line-height: 1.2;
}

.armor-status-state {
    font-size: 13px;
    color: var(--armor-text-muted);
}

.armor-status-state.state-active {
    color: var(--armor-success);
}

.armor-status-state.state-disabled {
    color: var(--armor-text-light);
}

.armor-enable-link {
    margin-left: 8px;
    color: var(--armor-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
}

.armor-enable-link:hover {
    color: var(--armor-primary-dark);
    text-decoration: underline;
}

/* Chart Container */
.armor-chart-container {
    position: relative;
    height: 250px;
}

/* Toggle Switch */
.armor-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.armor-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
}

.armor-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--armor-border-dark);
    transition: var(--armor-transition-slow);
    border-radius: 24px;
}

.armor-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: var(--armor-bg-white);
    transition: var(--armor-transition-slow);
    border-radius: 50%;
}

.armor-toggle input:checked + .armor-toggle-slider {
    background-color: #34D399;
}

.armor-toggle input:checked + .armor-toggle-slider:before {
    transform: translateX(20px);
}

.armor-toggle input:disabled + .armor-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.armor-server-managed {
    opacity: 0.5;
    pointer-events: none;
}

.armor-toggle-disabled {
    cursor: not-allowed;
}

.armor-toggle-disabled .armor-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Settings List */
.armor-settings-list {
    padding: 0;
    background: var(--armor-bg-card);
}

/* Feature Toggle Bar (master enable/disable at top of tab) */
.armor-feature-toggle-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    margin-bottom: 16px;
    background: var(--armor-bg-light);
    border: 1px solid var(--armor-border);
    border-radius: 8px;
}

.armor-feature-toggle-bar .armor-feature-toggle-info {
    flex: 1;
}

.armor-feature-toggle-bar .armor-feature-toggle-info h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 2px;
    color: var(--armor-text-primary);
}

.armor-feature-toggle-bar .armor-feature-toggle-info p {
    font-size: 13px;
    color: var(--armor-text-secondary);
    margin: 0;
}

.armor-setting-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--armor-border-light);
    position: relative;
}

.armor-setting-row:last-child {
    border-bottom: none;
}

/* Remove top padding when setting-row follows a visible notice element */
.armor-settings-list > .armor-info-box:not([style*="none"]) + .armor-setting-row {
    padding-top: 0;
}

.armor-setting-info {
    flex: 1;
}

.armor-setting-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--armor-text-primary);
    margin: 0 0 5px 0;
}

.armor-setting-info p {
    color: var(--armor-text-secondary);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.armor-setting-control {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}


/* Tables */
.armor-table-wrap {
    overflow-x: auto;
}

.armor-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background: var(--armor-bg-card);
    font-size: 12px;
}

.armor-table th,
.armor-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--armor-border-light);
}

.armor-table th {
    background: var(--armor-bg-light);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--armor-text-muted);
    border-bottom: 1px solid var(--armor-border);
}

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

.armor-table tr:hover {
    background: var(--armor-bg-light);
}

.armor-table tr.threat {
    background: #fff0f3;
}

.armor-table tr.threat:hover {
    background: #ffe0e6;
}

.armor-ip-badge {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    background: var(--armor-bg-white);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--armor-border);
    display: inline-block;
    line-height: 1.2;
    vertical-align: middle;
}

.armor-table .armor-ip-badge {
    background: var(--armor-bg-light);
}

.armor-table tr:hover .armor-ip-badge {
    background: var(--armor-bg-white);
    border-color: var(--armor-border-dark);
}

/* Threat row IP badges - red tint */
.armor-table tr.threat .armor-ip-badge {
    background: var(--armor-danger-bg);
    border-color: var(--armor-danger-border);
}

.armor-table tr.threat:hover .armor-ip-badge {
    background: var(--armor-bg-white);
    border-color: #fca5a5;
}

/* Blocked/Blacklisted row IP badges - red tint */
.armor-table tr.blocked .armor-ip-badge,
.armor-table tr.blacklisted .armor-ip-badge {
    background: var(--armor-danger-bg);
    border-color: var(--armor-danger-border);
}

.armor-table tr.blocked:hover .armor-ip-badge,
.armor-table tr.blacklisted:hover .armor-ip-badge {
    background: var(--armor-bg-white);
    border-color: #fca5a5;
}

/* Success/Whitelisted row IP badges - green tint */
.armor-table tr.success .armor-ip-badge,
.armor-table tr.whitelisted .armor-ip-badge {
    background: var(--armor-success-bg);
    border-color: var(--armor-success-border);
}

.armor-table tr.success:hover .armor-ip-badge,
.armor-table tr.whitelisted:hover .armor-ip-badge {
    background: var(--armor-bg-white);
    border-color: var(--armor-success-border);
}

/* Row background colors for different statuses */
.armor-table tr.blocked,
.armor-table tr.blacklisted {
    background: var(--armor-danger-bg);
}

.armor-table tr.blocked:hover,
.armor-table tr.blacklisted:hover {
    background: #fee2e2;
}

.armor-table tr.success,
.armor-table tr.whitelisted {
    background: var(--armor-success-bg);
}

.armor-table tr.success:hover,
.armor-table tr.whitelisted:hover {
    background: #ddf2e8;
}

/* Request column - fixed width with overflow */
.armor-request-cell {
    width: 190px;
    max-width: 190px;
}

.armor-request-text {
    display: inline-block;
    max-width: 100%;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    cursor: help;
}

/* Details column - fixed width with overflow */
.armor-details-cell {
    width: 160px;
    max-width: 160px;
}

.armor-details-text {
    display: inline-block;
    max-width: 100%;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: help;
}

/* Tippy.js base styles */
.tippy-box {
    position: relative;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.4;
    white-space: normal;
    outline: 0;
    transition-property: transform, visibility, opacity;
}

.tippy-box[data-placement^='top'] > .tippy-arrow {
    bottom: 0;
}

.tippy-box[data-placement^='top'] > .tippy-arrow:before {
    bottom: -7px;
    left: 0;
    border-width: 8px 8px 0;
    border-top-color: initial;
    transform-origin: center top;
}

.tippy-box[data-placement^='bottom'] > .tippy-arrow {
    top: 0;
}

.tippy-box[data-placement^='bottom'] > .tippy-arrow:before {
    top: -7px;
    left: 0;
    border-width: 0 8px 8px;
    border-bottom-color: initial;
    transform-origin: center bottom;
}

.tippy-arrow {
    width: 16px;
    height: 16px;
    color: #333;
}

.tippy-arrow:before {
    content: '';
    position: absolute;
    border-color: transparent;
    border-style: solid;
}

.tippy-content {
    position: relative;
    padding: 5px 9px;
    z-index: 1;
}

/* Tippy.js custom theme */
.tippy-box[data-theme~='armor'] {
    background-color: #1d2327;
    color: #fff;
    font-size: 13px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    max-width: 400px !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.tippy-box[data-theme~='armor'] > .tippy-arrow {
    color: #1d2327;
}

.tippy-box[data-theme~='armor'] > .tippy-content {
    padding: 10px 12px;
    display: block !important;
    word-break: break-all !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
    line-height: 1.4;
}

/* Status Badges */
.armor-status-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

.armor-status-badge.blocked {
    background: var(--armor-danger);
    color: var(--armor-text-inverse);
}

.armor-status-badge.whitelisted {
    background: var(--armor-success);
    color: var(--armor-text-inverse);
}

.armor-status-badge.blacklisted {
    background: #1e293b;
    color: var(--armor-text-inverse);
}

.armor-status-badge.lockout {
    background: #e5e7eb;
    color: #6b7280;
}

.armor-status-badge.login {
    background: var(--armor-success);
    color: var(--armor-text-inverse);
}

.armor-status-badge.failed {
    background: var(--armor-warning);
    color: var(--armor-text-inverse);
}

.armor-status-badge.trusted {
    background: var(--armor-success);
    color: var(--armor-text-inverse);
}

/* Blocked checkmark in login sessions */
.armor-blocked-check {
    color: var(--armor-danger);
    font-weight: 600;
    font-size: 14px;
}

/* Status Legend */
.armor-status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 15px 20px;
    background: #f6f7f7;
    border-top: 1px solid #c3c4c7;
    align-items: center;
}

.armor-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.armor-legend-note {
    font-size: 12px;
    color: var(--armor-text-muted);
}

.armor-status-tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 5px;
}

.armor-status-tag.blocked {
    background: var(--armor-danger);
    color: var(--armor-text-inverse);
}

.armor-status-tag.blacklisted {
    background: #1e293b;
    color: var(--armor-text-inverse);
}

.armor-status-tag.lockout {
    background: #e5e7eb;
    color: #6b7280;
}

.armor-status-tag.failed {
    background: var(--armor-warning);
    color: var(--armor-text-inverse);
}

.armor-status-tag.login {
    background: var(--armor-success);
    color: var(--armor-text-inverse);
}

.armor-status-tag.trusted {
    background: var(--armor-success);
    color: var(--armor-text-inverse);
}

.armor-unknown,
.armor-muted {
    color: var(--armor-text-secondary);
    font-style: italic;
}

/* Filters */
.armor-filters-bar {
    display: flex;
    gap: 8px;
    padding: 15px 20px;
    background: var(--armor-bg-card);
    border-bottom: 1px solid var(--armor-border-light);
}

button.armor-filter-btn {
    padding: 6px 14px;
    background: var(--armor-bg-white);
    border: 1px solid var(--armor-border);
    color: var(--armor-text-muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--armor-transition);
    border-radius: var(--armor-radius);
}

button.armor-filter-btn:hover {
    background: var(--armor-bg-light);
    border-color: var(--armor-border-dark);
    color: var(--armor-text-primary);
}

button.armor-filter-btn.active {
    background: var(--armor-primary);
    border-color: var(--armor-primary);
    color: var(--armor-text-inverse);
}

/* Form Elements */
input.armor-input,
select.armor-select,
textarea.armor-textarea {
    padding: 9px 12px;
    border: 1px solid var(--armor-border);
    font-size: 13px;
    background: var(--armor-bg-white);
    border-radius: var(--armor-radius);
    transition: border-color var(--armor-transition), box-shadow var(--armor-transition);
    color: var(--armor-text-primary);
    line-height: 1.4;
}

input.armor-input::placeholder,
textarea.armor-textarea::placeholder {
    color: var(--armor-text-light);
}

input.armor-input:hover,
select.armor-select:hover,
textarea.armor-textarea:hover {
    border-color: var(--armor-border-dark);
}

input.armor-input:focus,
select.armor-select:focus,
textarea.armor-textarea:focus {
    border-color: var(--armor-primary);
    outline: none;
    box-shadow: var(--armor-focus-ring);
}

select.armor-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.armor-textarea {
    min-height: 120px;
    min-width: 400px;
    resize: vertical;
}

.armor-input-with-suffix {
    display: flex;
    align-items: center;
    gap: 8px;
}

.armor-input-with-suffix input.armor-input {
    width: 80px;
}

.armor-input-suffix {
    font-size: 13px;
    color: var(--armor-text-secondary);
}

.armor-load-more-wrap {
    text-align: center;
    padding: 16px 0 8px;
}

.armor-load-more-wrap button.armor-load-more {
    min-width: 120px;
    background: var(--armor-bg-white);
    color: var(--armor-primary);
    border: 1px solid var(--armor-border);
    border-radius: var(--armor-radius);
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--armor-transition);
}

.armor-load-more-wrap button.armor-load-more:hover {
    background: var(--armor-bg-light);
    border-color: var(--armor-border-dark);
}

.armor-select {
    min-width: 150px;
}

.armor-ip-detected {
    font-size: 12px;
    color: var(--armor-text-muted);
    margin-top: 6px;
}

.armor-textarea-wrap {
    margin-top: 10px;
}

.armor-helper-text {
    margin-top: 8px;
    font-size: 13px;
    color: var(--armor-text-muted);
    line-height: 1.5;
}

.armor-helper-text a {
    color: var(--armor-success);
    text-decoration: none;
    font-weight: 500;
}

.armor-helper-text a:hover {
    text-decoration: underline;
}

/* Buttons */
button.armor-btn,
a.armor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 16px;
    font-family: var(--armor-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: var(--armor-radius);
    cursor: pointer;
    transition: all var(--armor-transition);
    text-decoration: none;
    white-space: nowrap;
}

button.armor-btn:disabled,
a.armor-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Button Icons */
button.armor-btn svg,
a.armor-btn svg {
    width: 16px;
    height: 16px;
}

/* Primary */
button.armor-btn-primary,
a.armor-btn-primary {
    background: var(--armor-primary);
    color: var(--armor-text-inverse);
}

button.armor-btn-primary:hover:not(:disabled),
a.armor-btn-primary:hover:not(:disabled) {
    background: var(--armor-primary-dark);
}

/* Secondary */
button.armor-btn-secondary,
a.armor-btn-secondary {
    background: var(--armor-bg-light);
    color: var(--armor-text-primary);
    border: 1px solid var(--armor-border-dark);
}

button.armor-btn-secondary:hover:not(:disabled),
a.armor-btn-secondary:hover:not(:disabled) {
    background: #eef0f3;
    border-color: #b0b5bd;
}

/* Outline */
button.armor-btn-outline,
a.armor-btn-outline {
    background: var(--armor-bg-white);
    color: var(--armor-primary);
    border: 1px solid var(--armor-border);
    text-decoration: none;
}

button.armor-btn-outline:hover:not(:disabled),
a.armor-btn-outline:hover:not(:disabled) {
    background: var(--armor-bg-light);
    border-color: var(--armor-border-dark);
}

/* Danger */
button.armor-btn-danger,
a.armor-btn-danger {
    background: var(--armor-danger);
    color: var(--armor-text-inverse);
}

button.armor-btn-danger:hover:not(:disabled),
a.armor-btn-danger:hover:not(:disabled) {
    background: var(--armor-danger-dark);
}

/* Success */
button.armor-btn-success,
a.armor-btn-success {
    background: var(--armor-success);
    color: var(--armor-text-inverse);
}

button.armor-btn-success:hover:not(:disabled),
a.armor-btn-success:hover:not(:disabled) {
    background: var(--armor-success-hover);
}

/* Large */
button.armor-btn-lg,
a.armor-btn-lg {
    padding: 12px 28px;
    font-size: 15px;
}

/* Whitelist Add */
.armor-whitelist-add {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    max-width: 400px;
}

.armor-whitelist-add .armor-input {
    flex: 1;
}

/* Current IP Notice */
.armor-current-ip-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--armor-warning-bg);
    border: 1px solid var(--armor-warning-border);
    border-radius: var(--armor-radius-lg);
    margin-bottom: 20px;
    gap: 15px;
}

.armor-current-ip-notice.armor-current-ip-safe {
    background: var(--armor-success-bg);
    border-color: var(--armor-success-border);
}

.armor-current-ip-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.armor-current-ip-info > span:first-child {
    font-weight: 500;
    color: #374151;
}

.armor-current-ip-notice .armor-ip-badge {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    background: var(--armor-bg-white);
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid var(--armor-warning-border);
    display: inline-block;
}

.armor-current-ip-notice.armor-current-ip-safe .armor-ip-badge {
    border-color: var(--armor-success-border);
    background: var(--armor-bg-white);
}

.armor-not-whitelisted {
    color: #b45309;
    font-size: 13px;
    font-weight: 500;
}

.armor-is-whitelisted {
    color: var(--armor-success);
    font-size: 13px;
    font-weight: 500;
}

/* Feedback Card */
.armor-feedback-card {
    background: var(--armor-bg-card);
}

.armor-feedback-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.armor-feedback-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--armor-bg-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--armor-text-light);
}

.armor-feedback-icon svg {
    width: 24px;
    height: 24px;
}

.armor-feedback-text h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--armor-text-primary);
    margin: 0 0 6px 0;
}

.armor-feedback-text p {
    font-size: 13px;
    color: var(--armor-text-secondary);
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.armor-feedback-link {
    color: var(--armor-success);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.armor-feedback-link:hover {
    text-decoration: underline;
}

/* Toast */
.armor-toast {
    position: fixed;
    top: 50px;
    right: 30px;
    background: var(--armor-primary-dark);
    color: var(--armor-text-inverse);
    padding: 12px 20px;
    border-radius: var(--armor-radius);
    font-size: 13px;
    z-index: 100001;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

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

.armor-toast-icon {
    color: #fff;
}

/* Settings Columns */
.armor-settings-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Table Actions */
.armor-table a {
    color: var(--armor-primary);
    text-decoration: none;
}

.armor-table a:hover {
    text-decoration: underline;
}

.armor-table .armor-action-unblock {
    color: var(--armor-text-primary);
}

.armor-table .armor-action-remove {
    color: var(--armor-danger);
}

/* Dashboard Widget Styles */
/* Dashboard Widget - Stats Grid */
.armor-widget-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.armor-widget-stat {
    background: var(--armor-bg-light);
    text-align: center;
    padding: 14px 8px;
    border-radius: 6px;
    border: 1px solid var(--armor-border);
}

.armor-widget-stat.armor-stat-total {
    border-color: rgba(255, 0, 85, 0.2);
    background: rgba(255, 0, 85, 0.03);
}

.armor-widget-stat-value {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: var(--armor-text-primary);
    letter-spacing: -0.3px;
    white-space: nowrap;
    line-height: 1;
}

.armor-widget-stat.armor-stat-total .armor-widget-stat-value {
    color: var(--armor-danger);
}

.armor-widget-stat-label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--armor-text-muted);
    margin-top: 4px;
}

/* Dashboard Widget - Footer */
.armor-widget-footer {
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid var(--armor-border);
}

.armor-widget-footer a {
    color: var(--armor-text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.armor-widget-footer a:hover {
    color: var(--armor-success);
}

/* Widget Responsive - handles narrow widget columns */
@media (max-width: 480px) {
    .armor-widget-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .armor-widget-stat {
        padding: 12px 6px;
    }
}

/* Responsive */
@media (max-width: 1300px) {
    .armor-wrap {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 900px) {
    .armor-settings-columns {
        grid-template-columns: 1fr;
    }
    
    .armor-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .armor-status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 782px) {
    .armor-status-grid {
        grid-template-columns: 1fr;
    }

    .armor-wrap {
        flex-direction: column;
    }
    
    .armor-sidebar {
        width: 100%;
    }
    
    .armor-nav {
        display: flex;
        flex-wrap: wrap;
        padding: 10px;
    }
    
    .armor-nav li {
        flex: 1;
    }
    
    .armor-nav-link {
        text-align: center;
        padding: 10px;
        border-left: none;
        border-bottom: 3px solid transparent;
    }
    
    .armor-nav-link.active {
        border-left: none;
        border-bottom-color: var(--armor-primary);
    }
}

/* ============================================
   Tools Tab Styles
   ============================================ */

/* Nav badge for error count */
.armor-nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    margin-left: 6px;
    background: var(--armor-danger);
    color: var(--armor-text-inverse);
    font-size: 13px;
    font-weight: 600;
    border-radius: 9px;
    line-height: 1;
}

/* Health Checks */
.armor-health-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.armor-health-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--armor-bg-subtle);
    border-radius: var(--armor-radius);
}

.armor-health-item.armor-health-success {
    background: var(--armor-success-bg);
}

.armor-health-item.armor-health-warning {
    background: var(--armor-warning-bg);
}

.armor-health-item.armor-health-error {
    background: #fcf0f1;
}

.armor-health-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.armor-health-success .armor-health-icon {
    color: var(--armor-success);
}

.armor-health-warning .armor-health-icon {
    color: #dba617;
}

.armor-health-error .armor-health-icon {
    color: var(--armor-danger);
}

.armor-health-name {
    font-weight: 500;
    color: var(--armor-text-primary);
    min-width: 180px;
}

.armor-health-message {
    color: #50575e;
    font-size: 13px;
}

/* Debug Toggle Inline (Error Log header) */
.armor-debug-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 8px;
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.armor-debug-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.armor-toggle-small {
    width: 34px;
    height: 18px;
}

.armor-toggle-small .armor-toggle-slider:before {
    height: 12px;
    width: 12px;
}

.armor-toggle-small input:checked + .armor-toggle-slider:before {
    transform: translateX(16px);
}

.armor-debug-timer {
    display: inline-block;
    padding: 1px 6px;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    border-radius: 5px;
    white-space: nowrap;
}

/* Diagnostic Tests */
.armor-test-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid var(--armor-border-light);
}

.armor-test-item:last-child {
    border-bottom: none;
}

.armor-test-info {
    flex: 1;
}

.armor-test-name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--armor-text-primary);
    margin-bottom: 4px;
}

.armor-test-desc {
    display: block;
    font-size: 13px;
    color: var(--armor-text-secondary);
}

.armor-test-result {
    font-size: 13px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--armor-radius);
}

.armor-test-result:empty {
    display: none;
}

.armor-test-result.success {
    background: var(--armor-success-bg);
    color: var(--armor-success);
}

.armor-test-result.error {
    background: #fcf0f1;
    color: var(--armor-danger);
}

/* Export/Import */
.armor-export-import-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .armor-export-import-grid {
        grid-template-columns: 1fr;
    }
}

.armor-export-import {
    max-width: 500px;
}

.armor-import-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.armor-import-status {
    font-size: 13px;
    color: var(--armor-text-secondary);
}

.armor-import-status.success {
    color: var(--armor-success);
}

.armor-import-status.error {
    color: var(--armor-danger);
}

/* Error Log Table Enhancements */
#armor-error-log .armor-level-badge {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
}

#armor-error-log .armor-level-debug {
    background: #f0f0f1;
    color: #646970;
}

#armor-error-log .armor-level-info {
    background: #e7f5fe;
    color: #0073aa;
}

#armor-error-log .armor-level-warning {
    background: #fcf9e8;
    color: #996800;
}

#armor-error-log .armor-level-error {
    background: #fcf0f1;
    color: var(--armor-danger);
}

#armor-error-log .armor-level-critical {
    background: var(--armor-danger);
    color: var(--armor-text-inverse);
}

#armor-error-log .armor-category-badge {
    display: inline-block;
    padding: 2px 6px;
    font-size: 12px;
    background: #f0f0f1;
    color: #50575e;
    border-radius: 5px;
}

#armor-error-log .armor-source-info {
    font-size: 12px;
    color: #646970;
    font-family: monospace;
}

/* Card actions in header */
.armor-card-actions {
    display: flex;
    gap: 8px;
}

/* Danger button - card actions context */
.armor-card-actions button.armor-btn-danger {
    background: var(--armor-danger);
    border-color: var(--armor-danger);
    color: var(--armor-text-inverse);
}

.armor-card-actions button.armor-btn-danger:hover,
.armor-card-actions button.armor-btn-danger:focus {
    background: var(--armor-danger-hover);
    border-color: var(--armor-danger-hover);
    color: var(--armor-text-inverse);
}

/* Data Management */
.armor-data-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid var(--armor-border-light);
}

.armor-data-action:last-child {
    border-bottom: none;
}

.armor-data-info h4 {
    margin: 0 0 6px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--armor-text-primary);
}

.armor-data-info p {
    margin: 0;
    font-size: 13px;
    color: var(--armor-text-secondary);
    line-height: 1.4;
}

.armor-data-action .armor-btn {
    flex-shrink: 0;
}

/* Danger Zone */
.armor-danger-zone {
    border: 1px solid var(--armor-border);
    background: var(--armor-bg-white);
}

.armor-danger-zone .armor-card-header {
    background: rgba(255, 0, 85, 0.08);
    border-bottom-color: rgba(255, 0, 85, 0.2);
}

.armor-danger-zone .armor-card-header h2 {
    color: var(--armor-danger);
}

.armor-danger-zone .armor-card-body {
    padding: 0;
}

.armor-danger-grid {
    display: flex;
    flex-direction: column;
}

.armor-danger-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    gap: 20px;
    border-bottom: 1px solid var(--armor-border);
}

.armor-danger-item:last-child {
    border-bottom: none;
}

.armor-danger-content h3 {
    font-family: var(--armor-font-body);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--armor-text-primary);
    letter-spacing: normal;
}

.armor-danger-content p {
    font-size: 13px;
    color: var(--armor-text-secondary);
    margin: 0;
    max-width: 500px;
    line-height: 1.4;
}

.armor-danger-item .armor-btn {
    flex-shrink: 0;
}

/* Confirmation Modal */
.armor-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
}

.armor-modal-overlay.active {
    display: flex;
}

.armor-modal {
    background: var(--armor-bg-card);
    border-radius: var(--armor-radius-lg);
    max-width: 440px;
    width: 90%;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform var(--armor-transition-slow);
}

.armor-modal-overlay.active .armor-modal {
    transform: scale(1);
}

.armor-modal h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: var(--armor-text-primary);
}

.armor-modal p {
    margin: 0 0 24px 0;
    color: var(--armor-text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.armor-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.armor-modal-actions .armor-btn {
    min-width: 100px;
}

/* Chart Filter */
.armor-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.armor-chart-filter {
    display: flex;
    gap: 8px;
    align-items: center;
}

select.armor-select-small {
    padding: 6px 12px;
    font-size: 13px;
    border: 1px solid var(--armor-border);
    border-radius: var(--armor-radius);
    background: var(--armor-bg-white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 28px;
    transition: border-color var(--armor-transition), box-shadow var(--armor-transition);
}

select.armor-select-small:hover {
    border-color: var(--armor-border-dark);
}

select.armor-select-small:focus {
    border-color: var(--armor-primary);
    outline: none;
    box-shadow: var(--armor-focus-ring);
}

/* Header-specific compact controls (for consistent header heights) */
select.armor-header-select {
    padding: 5px 28px 5px 10px;
    font-size: 13px;
    line-height: 1.2;
    height: 30px;
    min-width: auto;
    border: 1px solid var(--armor-border);
    border-radius: var(--armor-radius);
    background: var(--armor-bg-white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: border-color var(--armor-transition), box-shadow var(--armor-transition);
}

select.armor-header-select:hover {
    border-color: var(--armor-border-dark);
}

select.armor-header-select:focus {
    border-color: var(--armor-primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(44, 51, 56, 0.1);
}

button.armor-header-btn,
a.armor-header-btn {
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    height: 30px;
    cursor: pointer;
    border: none;
    border-radius: var(--armor-radius);
    transition: all var(--armor-transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

button.armor-header-btn.armor-btn-secondary,
a.armor-header-btn.armor-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--armor-text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

button.armor-header-btn.armor-btn-secondary:hover,
a.armor-header-btn.armor-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

button.armor-header-btn.armor-btn-outline,
a.armor-header-btn.armor-btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: var(--armor-text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

button.armor-header-btn.armor-btn-outline:hover,
a.armor-header-btn.armor-btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

button.armor-header-btn.armor-btn-danger,
a.armor-header-btn.armor-btn-danger {
    background: var(--armor-danger);
    color: var(--armor-text-inverse);
    border: 1px solid var(--armor-danger);
}

button.armor-header-btn.armor-btn-danger:hover,
a.armor-header-btn.armor-btn-danger:hover {
    background: var(--armor-danger-dark);
    border-color: var(--armor-danger-dark);
}


/* Checkbox Group for Notifications */
/* Setting Note */
.armor-setting-note {
    margin-top: 8px;
    padding: 8px 12px;
    background: #f0f6fc;
    border-radius: var(--armor-radius);
    font-size: 13px;
    color: var(--armor-text-primary);
}

.armor-setting-note code {
    background: var(--armor-bg-white);
    padding: 2px 6px;
    border-radius: var(--armor-radius);
    font-size: 13px;
    word-break: break-all;
}

/* Login URL Display */
.armor-login-url-input-wrap {
    display: inline-flex;
    align-items: center;
    background: var(--armor-bg-white);
    border: 1px solid var(--armor-border);
    border-radius: var(--armor-radius);
    overflow: hidden;
    box-shadow: var(--armor-shadow-sm);
    transition: border-color var(--armor-transition), box-shadow var(--armor-transition);
}

.armor-login-url-input-wrap:focus-within {
    border-color: var(--armor-primary);
    box-shadow: var(--armor-focus-ring);
}

.armor-login-url-base {
    padding: 0 0 0 12px;
    font-size: 13px;
    color: var(--armor-text-muted);
    white-space: nowrap;
    background: var(--armor-bg-light);
    line-height: 38px;
    border-right: 1px solid var(--armor-border);
}

.armor-login-slug-input {
    border: none !important;
    border-radius: 0 !important;
    background: var(--armor-bg-white) !important;
    min-width: 160px;
    margin: 0 !important;
    box-shadow: none !important;
    font-weight: 500;
    color: var(--armor-text-primary);
}

.armor-login-slug-input:focus {
    outline: none !important;
    box-shadow: none !important;
}

button.armor-copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 38px;
    border: none;
    border-left: 1px solid var(--armor-border);
    background: var(--armor-bg-light);
    color: var(--armor-text-muted);
    cursor: pointer;
    transition: all var(--armor-transition);
    flex-shrink: 0;
}

button.armor-copy-btn:hover {
    background: var(--armor-bg-muted);
    color: var(--armor-text-primary);
}

button.armor-copy-btn:active {
    transform: scale(0.95);
}

button.armor-copy-btn.copied {
    background: var(--armor-success);
    color: var(--armor-text-inverse);
    border-left-color: var(--armor-success);
}

button.armor-copy-btn svg {
    width: 16px;
    height: 16px;
}

.armor-login-url-hint {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--armor-text-muted);
}

/* Input Wide */
.armor-input-wide {
    min-width: 250px;
}

/* Permissions Policy Grid */
.armor-permissions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.armor-permission-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--armor-bg-white);
    border-radius: var(--armor-radius-lg);
    cursor: pointer;
    transition: all var(--armor-transition);
    border: 1px solid var(--armor-border);
    font-size: 13px;
    font-weight: 500;
    color: var(--armor-text-muted);
}

.armor-permission-item:hover {
    border-color: var(--armor-border-dark);
    color: var(--armor-text-primary);
}

.armor-permission-item:has(input:checked) {
    background: var(--armor-success-bg);
    border-color: var(--armor-success);
    color: var(--armor-text-primary);
}

.armor-permission-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--armor-success);
    flex-shrink: 0;
}

/* Permissions-Policy block grid uses red (blocking features) */
.armor-permissions-grid-block .armor-permission-item:has(input:checked) {
    background: var(--armor-danger-bg);
    border-color: var(--armor-danger);
}

.armor-permissions-grid-block .armor-permission-item input[type="checkbox"] {
    accent-color: var(--armor-danger);
}

/* Country Blocking */

/* When inside settings-list, add consistent margins */
.armor-settings-list .armor-info-box {
    margin: 20px;
}

/* ==========================================================================
   Unified Info Box Styles
   ========================================================================== */

.armor-info-box {
    padding: 14px 18px;
    margin-bottom: 20px;
    border-radius: var(--armor-radius-lg);
    font-size: 13px;
    line-height: 1.5;
    background: #eef6ff;
    border: 1px solid #c5ddf8;
    color: #3b6fa0;
}

/* Success variant (green) */
.armor-info-box.armor-info-box-success {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--armor-success-bg);
    border: 1px solid var(--armor-success-border);
    color: var(--armor-success-text);
}

.armor-info-box.armor-info-box-success::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2343b98c' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
}

/* Error variant (red) */
.armor-info-box.armor-info-box-error {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--armor-danger-bg);
    border: 1px solid var(--armor-danger-border);
    color: var(--armor-danger-text);
}

.armor-info-box.armor-info-box-error::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ef4444' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
}

/* Info box links */
.armor-info-box a {
    color: inherit;
    font-weight: 500;
    text-decoration: underline;
}

.armor-info-box a:hover {
    text-decoration: none;
}

/* Trash button for whitelist/blacklist */
button.armor-trash-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 4px;
    color: var(--armor-text-light);
    text-decoration: none;
    cursor: pointer;
    transition: color var(--armor-transition);
}

button.armor-trash-btn:hover {
    color: var(--armor-danger);
}

button.armor-trash-btn svg {
    display: block;
}

/* Action column - fixed width, right-aligned */
.armor-action-col {
    width: 60px;
    text-align: right;
}

/* Copy IP button */
button.armor-copy-ip-btn {
    background: none;
    border: none;
    padding: 4px;
    margin-left: 8px;
    color: var(--armor-text-light);
    cursor: pointer;
    vertical-align: middle;
    transition: color var(--armor-transition);
}

button.armor-copy-ip-btn:hover {
    color: var(--armor-primary);
}

button.armor-copy-ip-btn.copied {
    color: var(--armor-success);
}

button.armor-copy-ip-btn svg {
    display: block;
}

/* ==========================================================================
   Modern IP List Styles
   ========================================================================== */

.armor-ip-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.armor-ip-list-header {
    display: grid;
    grid-template-columns: 1fr 140px 100px 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--armor-text-muted);
    border-bottom: 1px solid var(--armor-border);
    margin-bottom: 0;
}

.armor-ip-list-header.with-location {
    grid-template-columns: 1fr 1fr 100px 40px;
}

.armor-ip-list-header.with-notes {
    grid-template-columns: 180px 1fr 100px 40px;
}

.armor-ip-list-header.with-location-notes {
    grid-template-columns: 180px 160px 1fr 100px 40px;
}

.armor-ip-item {
    display: grid;
    grid-template-columns: 1fr 100px 40px;
    align-items: center;
    padding: 5px 12px;
    background: var(--armor-bg-light);
    border-radius: 4px;
    transition: all var(--armor-transition);
    border: 1px solid transparent;
    font-size: 12px;
}

.armor-ip-item.with-location {
    grid-template-columns: 1fr 1fr 100px 40px;
}

.armor-ip-item.with-notes {
    grid-template-columns: 180px 1fr 100px 40px;
}

.armor-ip-item.with-location-notes {
    grid-template-columns: 180px 160px 1fr 100px 40px;
}

.armor-ip-item:hover {
    background: var(--armor-bg-muted);
    border-color: var(--armor-border);
}

.armor-ip-item-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
}

.armor-ip-item-ip {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    background: var(--armor-bg-white);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid var(--armor-border);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.armor-ip-item-ip button.armor-copy-ip-btn {
    margin-left: 0;
    opacity: 0;
    transition: opacity var(--armor-transition), color var(--armor-transition);
}

.armor-ip-item:hover .armor-ip-item-ip button.armor-copy-ip-btn {
    opacity: 1;
}

.armor-ip-item-location {
    font-size: 12px;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.armor-ip-item-location .armor-unknown {
    color: var(--armor-text-light);
    font-style: italic;
}

.armor-ip-item-notes {
    min-width: 0;
    overflow: visible;
}

.armor-notes-text {
    display: block;
    font-size: 12px;
    color: var(--armor-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--armor-transition);
    min-height: 26px;
    line-height: 18px;
    box-sizing: border-box;
}

.armor-notes-text:empty::before {
    content: 'Add note...';
    color: var(--armor-text-light);
    font-style: italic;
}

.armor-notes-text:hover {
    background: var(--armor-bg-white);
    border-color: var(--armor-border-dark);
}

.armor-notes-text.editing {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    background: var(--armor-bg-white);
    border-color: var(--armor-success);
    outline: none;
    position: relative;
    z-index: 10;
    min-width: 200px;
    max-width: 400px;
    word-wrap: break-word;
}

.armor-ip-item-date {
    font-size: 12px;
    color: var(--armor-text-muted);
    white-space: nowrap;
}

.armor-blacklist-expiry {
    display: block;
    font-size: 12px;
    color: var(--armor-text-light);
    margin-top: 2px;
}

.armor-ip-item-actions {
    display: flex;
    justify-content: flex-end;
}

.armor-ip-item-actions button.armor-trash-btn {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    opacity: 0;
    transition: all var(--armor-transition);
}

.armor-ip-item:hover .armor-ip-item-actions button.armor-trash-btn {
    opacity: 1;
}

.armor-ip-item-actions button.armor-trash-btn:hover {
    background: var(--armor-danger-bg);
    color: var(--armor-danger);
}

/* Empty state */
.armor-ip-list-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--armor-text-light);
    background: var(--armor-bg-light);
    border-radius: var(--armor-radius-lg);
    border: 2px dashed var(--armor-border);
}

.armor-ip-list-empty-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    color: var(--armor-border-dark);
}

.armor-ip-list-empty-text {
    font-size: 14px;
    margin: 0;
}

/* Blacklist specific - red accent */
.armor-ip-list.armor-ip-list-blacklist .armor-ip-item-ip {
    border-color: var(--armor-danger-border);
    background: var(--armor-danger-bg);
}

.armor-ip-list.armor-ip-list-blacklist .armor-ip-item:hover .armor-ip-item-ip {
    border-color: #fca5a5;
}

/* Whitelist specific - green accent */
.armor-ip-list.armor-ip-list-whitelist .armor-ip-item-ip {
    border-color: var(--armor-success-border);
    background: var(--armor-success-bg);
}

.armor-ip-list.armor-ip-list-whitelist .armor-ip-item:hover .armor-ip-item-ip {
    border-color: var(--armor-success-border);
}

/* Add IP input styling */
.armor-ip-add-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.armor-ip-add-form .armor-input {
    flex: 1;
    max-width: 280px;
}

/* Responsive */
@media (max-width: 768px) {
    .armor-ip-list-header {
        display: none;
    }
    
    .armor-ip-item,
    .armor-ip-item.with-location {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 8px;
        padding: 12px;
    }
    
    .armor-ip-item-primary {
        grid-column: 1;
        grid-row: 1;
    }
    
    .armor-ip-item-location {
        grid-column: 1;
        grid-row: 2;
        font-size: 12px;
    }

    .armor-ip-item-date {
        grid-column: 1;
        grid-row: 2;
        font-size: 12px;
    }
    
    .armor-ip-item.with-location .armor-ip-item-date {
        display: none;
    }
    
    .armor-ip-item-actions {
        grid-column: 2;
        grid-row: 1 / 3;
        align-items: center;
    }
    
    .armor-ip-item-actions button.armor-trash-btn {
        opacity: 1;
    }

    .armor-ip-item .armor-ip-item-ip button.armor-copy-ip-btn {
        opacity: 1;
    }
}


.armor-debug-table {
    width: 100%;
    border-collapse: collapse;
}

.armor-debug-table td {
    padding: 8px 12px;
    border-bottom: 1px solid var(--armor-border);
    font-size: 13px;
    vertical-align: top;
}

.armor-debug-table td:first-child {
    width: 160px;
    white-space: nowrap;
}

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

/* =========================================================================
   Rule Management Card
   ========================================================================= */

.armor-rules-header {
	cursor: pointer;
	user-select: none;
}

.armor-rules-header:hover {
	background: var(--armor-bg-light);
}

.armor-rules-summary {
	font-size: 12px;
	color: var(--armor-text-inverse);
	opacity: 0.6;
	font-family: var(--armor-font-body);
	font-weight: 500;
	margin-right: 8px;
}

.armor-rules-chevron {
	padding: 4px !important;
	min-width: auto !important;
	transition: transform var(--armor-transition);
}

.armor-rules-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	padding: 12px 16px;
	border-bottom: 1px solid var(--armor-border);
	background: var(--armor-bg-light);
}

.armor-rules-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	flex: 1;
}

.armor-rule-search {
	width: 200px !important;
	font-size: 12px !important;
	padding: 5px 10px !important;
}

.armor-rules-disabled-filter {
	font-size: 12px;
	color: var(--armor-text-muted);
	display: flex;
	align-items: center;
	gap: 5px;
	white-space: nowrap;
	cursor: pointer;
}

.armor-rules-disabled-filter input {
	margin: 0;
}

.armor-rules-list {
	max-height: 500px;
	min-height: 500px;
	overflow-y: auto;
}

.armor-rules-section-header {
	font-family: var(--armor-font-heading);
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--armor-text-muted);
	padding: 10px 16px 4px;
	background: var(--armor-bg-light);
	border-bottom: 1px solid var(--armor-border);
	position: sticky;
	top: 0;
	z-index: 1;
}

.armor-rules-count {
	color: var(--armor-text-muted);
	font-weight: 400;
}

.armor-rule-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 6px 16px;
	border-bottom: 1px solid #f3f4f6;
	transition: background var(--armor-transition);
}

.armor-rule-row:hover {
	background: var(--armor-bg-light);
}

.armor-rule-row:last-child {
	border-bottom: none;
}

.armor-rule-disabled {
	opacity: 0.5;
}

.armor-rule-disabled .armor-rule-desc {
	text-decoration: line-through;
}

.armor-rule-info {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 0;
}


.armor-rule-desc {
	font-size: 12px;
	color: var(--armor-text-primary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


/* =========================================================================
   Firewall
   ========================================================================= */

.armor-category-badge {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 2px 6px;
	border-radius: 4px;
	white-space: nowrap;
}

.armor-cat-request_uri {
	background: rgba(91, 127, 225, 0.1);
	color: #5B7FE1;
}

.armor-cat-query_string {
	background: rgba(139, 92, 246, 0.1);
	color: #8B5CF6;
}

.armor-cat-user_agent {
	background: rgba(20, 184, 166, 0.1);
	color: #14B8A6;
}

.armor-cat-referrer {
	background: rgba(217, 119, 6, 0.1);
	color: #D97706;
}

.armor-cat-ip_address {
	background: rgba(232, 70, 106, 0.1);
	color: #E8466A;
}

.armor-pattern-cell {
	font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
	font-size: 12px;
	word-break: break-all;
	max-width: 300px;
}

.armor-hit-count {
	font-variant-numeric: tabular-nums;
	color: var(--armor-text-muted);
}

.armor-hit-count.active {
	color: var(--armor-danger);
	font-weight: 600;
}

.armor-toggle-sm {
	transform: scale(0.8);
	transform-origin: center;
}

.armor-add-pattern-form {
	padding: 12px 16px;
	border-bottom: 1px solid var(--armor-border);
}

.armor-add-pattern-form .armor-form-row {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

.armor-add-pattern-form select.armor-select {
	width: auto;
	min-width: 120px;
}

.armor-add-pattern-form input.armor-input {
	flex: 1;
	min-width: 120px;
}

.armor-add-pattern-form .armor-btn {
	white-space: nowrap;
}

a.armor-delete-pattern {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 19px;
	height: 19px;
	border-radius: 5px;
	background: var(--armor-bg-light);
	border: 1px solid var(--armor-border);
	color: var(--armor-text-muted);
	margin-left: 6px;
	vertical-align: middle;
	transition: all var(--armor-transition);
}

a.armor-delete-pattern:hover {
	color: var(--armor-danger);
	border-color: var(--armor-danger);
	background: rgba(255, 0, 85, 0.05);
}

.armor-patterns-stable {
	min-height: 420px;
}

/* Firewall Log column widths — Rule (3) and Request (4) share remaining space equally */
#armor-firewall-log-table th:nth-child(1),
#armor-firewall-log-table td:nth-child(1) { width: 120px; }
#armor-firewall-log-table th:nth-child(2),
#armor-firewall-log-table td:nth-child(2) { width: 100px; }
#armor-firewall-log-table th:nth-child(5),
#armor-firewall-log-table td:nth-child(5) { width: 130px; }
#armor-firewall-log-table th:nth-child(6),
#armor-firewall-log-table td:nth-child(6) { width: 70px; }

/* Pattern Manager column widths */
#armor-patterns-table th:nth-child(1),
#armor-patterns-table td:nth-child(1) { width: 80px; }
#armor-patterns-table th:nth-child(2),
#armor-patterns-table td:nth-child(2) { width: 110px; }
#armor-patterns-table th:nth-child(5),
#armor-patterns-table td:nth-child(5) { width: 55px; }

/* ==========================================================================
   Upsell Card (ArmorLite)
   ========================================================================== */

.armor-upsell-card {
    border: 2px dashed var(--armor-border-dark);
    background: var(--armor-bg-light);
}

.armor-upsell-content {
    text-align: center;
    padding: 24px 16px;
}

.armor-upsell-icon {
    color: var(--armor-success);
    margin-bottom: 12px;
    width: 32px;
    height: 32px;
}

.armor-upsell-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--armor-text-primary);
    margin: 0 0 12px;
}

.armor-upsell-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
}

.armor-upsell-features li {
    font-size: 13px;
    color: var(--armor-text-secondary);
    position: relative;
    padding-left: 16px;
}

.armor-upsell-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--armor-success);
    font-weight: 600;
}

/* ==========================================================================
   Utility & WordPress.org Compliance Classes
   ========================================================================== */

.armor-hidden {
    display: none;
}

.armor-upgrade-link {
    color: var(--armor-success);
    font-weight: 600;
}

/* Login Log Table Column Widths */
#armor-login-log th:nth-child(1),
#armor-login-log th:nth-child(2) {
    width: 140px;
}

#armor-login-log th:nth-child(3) {
    width: 100px;
}

#armor-login-log th:nth-child(5) {
    width: 110px;
}

#armor-login-log th:nth-child(6) {
    width: 80px;
}

/* Firewall Log Table Column Widths */
#armor-firewall-log-table th:nth-child(1) {
    width: 130px;
}

#armor-firewall-log-table th:nth-child(2) {
    width: 110px;
}

#armor-firewall-log-table th:nth-child(3) {
    width: 160px;
}

#armor-firewall-log-table th:nth-child(5) {
    width: 110px;
}

#armor-firewall-log-table th:nth-child(6) {
    width: 70px;
}

/* Pattern Search */
#armor-pattern-search {
    margin-left: auto;
    max-width: 220px;
}

/* Bypass Code Path */
.armor-bypass-path {
    display: block;
    padding: 8px 12px;
    background: var(--armor-bg-light);
    border: 1px solid var(--armor-border);
    border-radius: 5px;
    font-size: 12px;
    margin-top: 8px;
    word-break: break-all;
}

/* Header Re-check Wrapper */
.armor-header-recheck {
    padding: 16px 20px 20px;
}

/* Country Blocking Helper Spacing */
.armor-country-helper {
    margin-bottom: 16px;
}

/* 2FA Compliance Full-width Info */
.armor-compliance-info {
    flex: 1 1 100%;
    max-width: 100%;
}

#armor-enforce-compliance-container {
    margin-top: 8px;
}

#armor-run-cleanup {
    margin-left: 8px;
}

.armor-bypass-active-msg {
    margin-bottom: 16px;
}

.armor-telemetry-optin-hidden {
    display: none;
}
