/* Root variables for dynamic, tailored color palette */
:root {
    --bg-dark: #0a0c10;
    --bg-panel: rgba(18, 22, 30, 0.65);
    --border-color: rgba(255, 255, 255, 0.07);
    --accent-cyan: #00f2fe;
    --accent-blue: #4facfe;
    --accent-purple: #9a4eff;
    --accent-gradient: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    --gradient-purple: linear-gradient(135deg, #7f00ff 0%, #e100ff 100%);
    --text-primary: #f0f4f8;
    --text-secondary: #90a0b0;
    --alert-red: #ff4b5c;
    --alert-orange: #ff8e53;
    --alert-green: #00e676;
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header styling */
.main-header {
    height: 70px;
    background: rgba(10, 12, 16, 0.85);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 1000;
}

.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    filter: blur(15px);
    opacity: 0.6;
    border-radius: 50%;
    z-index: -1;
}

.logo-container i {
    font-size: 24px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pulse-icon {
    animation: logo-pulse 2s infinite ease-in-out;
}

@keyframes logo-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.logo-container h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.5px;
}

.logo-container h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.online {
    background-color: var(--alert-green);
    box-shadow: 0 0 10px var(--alert-green);
}

/* Dashboard layout grid */
.dashboard-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 320px 1fr 380px;
    gap: 20px;
    padding: 20px;
    height: calc(100vh - 70px);
}

/* Panel glassmorphism design */
.panel {
    border-radius: 16px;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(16px);
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.panel:hover {
    border-color: rgba(0, 242, 254, 0.2);
}

.panel-header {
    height: 55px;
    padding: 0 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
}

.panel-header h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.text-alert {
    color: var(--alert-red);
}

.text-brain {
    color: var(--accent-blue);
}

/* Column 1: Alert Feed */
.alert-list-container {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

/* Custom scrollbars */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.alert-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alert-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.alert-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
    border-color: rgba(255, 75, 92, 0.3);
}

.alert-card.active {
    border-color: var(--alert-red);
    background: rgba(255, 75, 92, 0.05);
}

.alert-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.alert-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.alert-severity {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 10px;
}

.alert-severity.high {
    background: rgba(255, 75, 92, 0.15);
    color: var(--alert-red);
    border: 1px solid var(--alert-red);
}

.alert-severity.medium {
    background: rgba(255, 142, 83, 0.15);
    color: var(--alert-orange);
    border: 1px solid var(--alert-orange);
}

.alert-summary {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 8px;
}

.alert-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.zone-quick-select {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.15);
}

.zone-quick-select h3 {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.zone-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.zone-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    padding: 8px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.zone-btn:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #000;
    font-weight: 600;
}

/* Column 2: Center Map & Split View */
.central-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-panel {
    flex: 0.9;
    min-height: 200px;
}

#map {
    width: 100%;
    height: 100%;
    background: #111;
}

/* Leaflet Custom Styles to match Dark Mode */
.leaflet-container {
    background-color: #111 !important;
}
.leaflet-bar a {
    background-color: var(--bg-panel) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
}

/* Split Image Slider */
.split-panel {
    flex: 1.3;
    min-height: 320px;
}

.panel-header-split {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
}

.split-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.split-title h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
}

.badge {
    font-size: 11px;
    background: rgba(0, 242, 254, 0.15);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    padding: 2px 10px;
    border-radius: 12px;
    margin-left: 10px;
}

.imagery-tabs {
    display: flex;
    gap: 5px;
}

.tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-secondary);
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
    background: rgba(0, 242, 254, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.comparison-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: stretch;
    justify-content: space-between;
    padding: 10px;
    flex: 1;
}

.comparison-slider {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    background: #15181e;
}

.legend-overlay-card {
    flex: 0 0 250px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.legend-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.legend-description {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 8px;
}

.legend-scale-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legend-scale-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-primary);
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
    flex-shrink: 0;
}

.color-dot.rgb-green {
    background: #228B22;
}

.color-dot.rgb-blue {
    background: #1E90FF;
}

.color-dot.rgb-grey {
    background: #808080;
}

.color-dot.ndvi-high {
    background: #00B400;
}

.color-dot.ndvi-med {
    background: #FFD700;
}

.color-dot.ndvi-low {
    background: #B43200;
}

.color-dot.mndwi-water {
    background: #00F0FF;
}

.color-dot.mndwi-land {
    background: #0A0A0A;
}

.color-dot.mndwi-silt {
    background: #202020;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.baseline-container {
    z-index: 10;
    /* Clip-path is animated via Javascript */
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.current-container {
    z-index: 5;
}

.image-label {
    position: absolute;
    top: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    z-index: 20;
}

.label-left {
    left: 10px;
}

.label-right {
    right: 10px;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    z-index: 30;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
}

.handle-line {
    width: 2px;
    height: 100%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
}

.handle-arrow-left,
.handle-arrow-right {
    position: absolute;
    background: var(--accent-cyan);
    color: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
}

.handle-arrow-left {
    transform: translateX(-14px);
}
.handle-arrow-right {
    transform: translateX(14px);
}

/* Column 3: AI Agent Chat */
.chat-panel {
    display: flex;
    flex-direction: column;
}

/* Trace Logs */
.agent-trace-container {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.trace-header {
    height: 35px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-secondary);
    font-family: monospace;
    cursor: pointer;
}

.trace-header:hover {
    color: var(--text-primary);
}

.toggle-trace-btn {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
}

.trace-log {
    max-height: 100px;
    overflow-y: auto;
    padding: 10px 15px;
    font-family: monospace;
    font-size: 10px;
    color: #a0c0a0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px dashed var(--border-color);
}

.trace-entry.system {
    color: #708090;
}
.trace-entry.tool-call {
    color: var(--accent-cyan);
}
.trace-entry.tool-response {
    color: var(--alert-green);
}

/* Chat Bubbles */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chat-bubble {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.chat-bubble.agent {
    align-self: flex-start;
}

.chat-bubble.user {
    align-self: flex-end;
}

.bubble-content {
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.5;
}

.chat-bubble.agent .bubble-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 0 16px 16px 16px;
}

.chat-bubble.user .bubble-content {
    background: var(--accent-gradient);
    color: #05080e;
    font-weight: 500;
    border-radius: 16px 16px 0 16px;
}

.bubble-meta {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
    padding: 0 4px;
}

.chat-bubble.user .bubble-meta {
    align-self: flex-end;
}

/* Chat List items & Markdown styling */
.bubble-content p {
    margin: 0 0 8px 0;
}

.bubble-content p:last-child {
    margin-bottom: 0;
}

.bubble-content ul, .bubble-content ol {
    margin-left: 20px;
    margin-top: 6px;
    margin-bottom: 8px;
}

.bubble-content li {
    margin-bottom: 4px;
}

.bubble-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 5px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
}

.bubble-content strong {
    color: var(--alert-green);
}

.chat-bubble.user .bubble-content strong {
    color: inherit;
}

/* Structured JSON response — collapsible details block */
.agent-json-details {
    margin: 4px 16px 10px;
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 8px;
    overflow: hidden;
    font-size: 11px;
}

.agent-json-details summary {
    padding: 6px 12px;
    cursor: pointer;
    color: var(--accent-cyan);
    background: rgba(0, 242, 254, 0.04);
    user-select: none;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.agent-json-details summary::before {
    content: "›";
    font-size: 14px;
    transition: transform 0.2s ease;
}

.agent-json-details[open] summary::before {
    transform: rotate(90deg);
}

.agent-json-details summary:hover {
    background: rgba(0, 242, 254, 0.08);
}

.agent-json-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
}

.agent-json-table td {
    padding: 5px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    vertical-align: top;
    line-height: 1.4;
}

.agent-json-table .json-key {
    color: var(--text-secondary);
    white-space: nowrap;
    width: 35%;
    font-weight: 600;
    text-transform: capitalize;
}

.agent-json-table .json-val {
    color: var(--text-primary);
    word-break: break-word;
}


/* Input Area */
.chat-input-area {
    position: relative;
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
}

.input-glow {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 10px;
    background: var(--accent-gradient);
    filter: blur(15px);
    opacity: 0.15;
    z-index: 1;
}

#chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: #fff;
    padding: 12px 15px;
    font-size: 13px;
    resize: none;
    font-family: inherit;
    z-index: 2;
    transition: all 0.2s ease;
}

#chat-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.send-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: none;
    background: var(--accent-gradient);
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

/* Loading animations */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    padding: 20px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    align-self: flex-start;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--text-secondary);
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
}

/* Live Analytics Styles */
.analytics-container {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 15px 15px 5px 15px;
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.1);
}

.stat-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 4px;
    transition: all 0.2s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 242, 254, 0.2);
}

.stat-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--accent-cyan);
    text-shadow: 0 0 6px rgba(0, 242, 254, 0.3);
}

.stat-lbl {
    font-size: 9px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* ==============================================================================
   Custom Rich Report Card & Refusal Card Layouts
   ============================================================================== */

.report-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-color);
    border-radius: 0 16px 16px 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    width: 100%;
}

.report-card:hover {
    border-color: rgba(0, 242, 254, 0.15);
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

.report-title-section {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.report-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.report-title i {
    font-size: 15px;
}

.text-cyan {
    color: var(--accent-cyan);
}

.report-subtitle {
    font-size: 11px;
    color: var(--text-secondary);
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 4px;
}

.metric-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: border-color 0.2s ease;
}

.metric-card.alert-border {
    border-color: rgba(255, 75, 92, 0.3) !important;
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.metric-header i {
    font-size: 11px;
}

.metric-value-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.metric-val {
    font-size: 16px;
    font-weight: 700;
    font-family: monospace;
    color: var(--text-primary);
}

.metric-change-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.metric-trend {
    font-size: 11px;
    font-weight: 600;
}

.text-red {
    color: var(--alert-red) !important;
}

.text-green {
    color: var(--alert-green) !important;
}

.report-narrative {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--text-primary);
}

.actions-log {
    border-top: 1px dashed var(--border-color);
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.actions-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.action-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11.5px;
    line-height: 1.45;
}

.action-item i {
    font-size: 11px;
    margin-top: 3px;
}

/* Refusal Card Layout */
.refusal-card {
    background: rgba(255, 75, 92, 0.04);
    border: 1px solid rgba(255, 75, 92, 0.2);
    border-radius: 0 16px 16px 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--glass-shadow);
    width: 100%;
}

.refusal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--alert-red);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.refusal-text {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--text-primary);
}

.report-warning-banner {
    background: rgba(255, 75, 92, 0.08);
    border: 1px solid rgba(255, 75, 92, 0.25);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.45;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}

.report-warning-banner i {
    color: var(--alert-red);
    font-size: 14px;
    margin-top: 2px;
}


