/* StatusRadar.dev - Incidents Management Styles */
/* Professional enterprise-grade design system */

/* ============================================
   1. SEVERITY SYSTEM
   ============================================ */

:root {
    /* Severity Colors - Base */
    --severity-info-base: #3b82f6;
    --severity-info-dark: #2563eb;
    --severity-info-light: #60a5fa;

    --severity-warning-base: #f59e0b;
    --severity-warning-dark: #d97706;
    --severity-warning-light: #fbbf24;

    --severity-minor-base: #fb923c;
    --severity-minor-dark: #f97316;
    --severity-minor-light: #fdba74;

    --severity-major-base: #ef4444;
    --severity-major-dark: #dc2626;
    --severity-major-light: #f87171;

    --severity-critical-base: #b91c1c;
    --severity-critical-dark: #7f1d1d;
    --severity-critical-light: #dc2626;

    /* Detection Source Colors */
    --detection-ml: #8b5cf6;
    --detection-ml-dark: #7c3aed;
    --detection-threshold: #6b7280;
    --detection-threshold-dark: #4b5563;

    /* Gradients */
    --severity-info-gradient: linear-gradient(135deg, var(--severity-info-base) 0%, var(--severity-info-dark) 100%);
    --severity-warning-gradient: linear-gradient(135deg, var(--severity-warning-base) 0%, var(--severity-warning-dark) 100%);
    --severity-minor-gradient: linear-gradient(135deg, var(--severity-minor-base) 0%, var(--severity-minor-dark) 100%);
    --severity-major-gradient: linear-gradient(135deg, var(--severity-major-base) 0%, var(--severity-major-dark) 100%);
    --severity-critical-gradient: linear-gradient(135deg, var(--severity-critical-base) 0%, var(--severity-critical-dark) 100%);

    /* Glass morphism */
    --glass-bg: rgba(22, 27, 34, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(10px);
}

/* ============================================
   2. INCIDENT HEADER BANNER
   ============================================ */

.incident-header-banner {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.incident-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(20px);
    opacity: 0.3;
    z-index: 0;
}

.incident-header-banner > * {
    position: relative;
    z-index: 1;
}

/* Severity-specific header backgrounds */
.incident-header-banner.severity-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.05) 100%);
    border-left: 4px solid var(--severity-info-base);
}

.incident-header-banner.severity-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.05) 100%);
    border-left: 4px solid var(--severity-warning-base);
}

.incident-header-banner.severity-minor {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.15) 0%, rgba(249, 115, 22, 0.05) 100%);
    border-left: 4px solid var(--severity-minor-base);
}

.incident-header-banner.severity-major {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-left: 4px solid var(--severity-major-base);
}

.incident-header-banner.severity-critical {
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.20) 0%, rgba(127, 29, 29, 0.08) 100%);
    border-left: 4px solid var(--severity-critical-base);
    animation: criticalBannerPulse 3s ease-in-out infinite;
}

@keyframes criticalBannerPulse {
    0%, 100% {
        border-left-color: var(--severity-critical-base);
    }
    50% {
        border-left-color: var(--severity-critical-light);
    }
}

/* ============================================
   5. INCIDENT TIMELINE
   ============================================ */

.incident-timeline {
    position: relative;
    padding-left: 2rem;
}

.incident-timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(180deg, var(--dash-border-primary) 0%, transparent 100%);
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--dash-bg-card);
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.2);
}

/* Severity-specific markers */
.timeline-marker.severity-info { background-color: var(--severity-info-base); }
.timeline-marker.severity-warning { background-color: var(--severity-warning-base); }
.timeline-marker.severity-minor { background-color: var(--severity-minor-base); }
.timeline-marker.severity-major { background-color: var(--severity-major-base); }
.timeline-marker.severity-critical {
    background-color: var(--severity-critical-base);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 0 0 0 3px var(--dash-bg-card), 0 0 0 5px rgba(185, 28, 28, 0);
    }
    50% {
        box-shadow: 0 0 0 3px var(--dash-bg-card), 0 0 0 8px rgba(185, 28, 28, 0.4);
    }
}

/* Standard timeline markers */
.timeline-marker.bg-primary { background-color: var(--dash-status-info); }
.timeline-marker.bg-warning { background-color: var(--dash-status-warning); }
.timeline-marker.bg-success { background-color: var(--dash-status-success); }
.timeline-marker.bg-danger { background-color: var(--dash-status-danger); }

.timeline-marker.pulse-animation {
    animation: markerPulse 2s ease-in-out infinite;
}

.timeline-content {
    background: var(--dash-bg-secondary);
    border: 1px solid var(--dash-border-primary);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
}

.timeline-item:hover .timeline-content {
    border-color: var(--dash-border-light);
    background: var(--dash-bg-hover);
    transform: translateX(2px);
}

/* ============================================
   6. ALERT METADATA CARDS
   ============================================ */

.alert-metadata-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.alert-metadata-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.ml-anomaly-card {
    border-left: 3px solid var(--detection-ml);
}

.threshold-card {
    border-left: 3px solid var(--severity-warning-base);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dash-text-muted);
    margin-bottom: 0.25rem;
}

/* ============================================
   7. FILTER SYSTEM
   ============================================ */

.filter-container {
    background: var(--dash-bg-card);
    border: 1px solid var(--dash-border-primary);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.filter-group {
    margin-bottom: 1rem;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dash-text-secondary);
    margin-bottom: 0.5rem;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--dash-bg-secondary);
    border: 1px solid var(--dash-border-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dash-text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    border-color: var(--dash-border-light);
    background: var(--dash-bg-hover);
    color: var(--dash-text-primary);
}

.filter-pill.active {
    background: var(--dash-brand-gradient);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.filter-pill.active:hover {
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.5);
    transform: translateY(-1px);
}

/* Severity-specific filter pills */
.filter-pill.filter-critical.active {
    background: var(--severity-critical-gradient);
    box-shadow: 0 2px 8px rgba(185, 28, 28, 0.4);
}

.filter-pill.filter-major.active {
    background: var(--severity-major-gradient);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.filter-pill.filter-minor.active {
    background: var(--severity-minor-gradient);
    box-shadow: 0 2px 8px rgba(251, 146, 60, 0.3);
}

.filter-pill.filter-warning.active {
    background: var(--severity-warning-gradient);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.filter-pill.filter-info.active {
    background: var(--severity-info-gradient);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.filter-pill i {
    font-size: 0.9rem;
}

.filter-pill .emoji {
    font-size: 1rem;
    line-height: 1;
}

/* Active filters display */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dash-border-primary);
}

.active-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.7rem;
    background: var(--dash-bg-hover);
    border: 1px solid var(--dash-border-light);
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--dash-text-primary);
}

.active-filter-chip .remove {
    cursor: pointer;
    color: var(--dash-text-muted);
    transition: color 0.2s ease;
}

.active-filter-chip .remove:hover {
    color: var(--dash-status-danger);
}

/* ============================================
   8. STATUS BADGES
   ============================================ */

.incident-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.incident-status-badge.active {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.incident-status-badge.resolved {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.incident-status-badge.investigating {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.incident-status-badge.monitoring {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.incident-status-badge.identified {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* ============================================
   9. RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .incident-header-banner {
        padding: 1rem !important;
    }

    .filter-pills {
        flex-direction: column;
    }

    .filter-pill {
        justify-content: center;
    }

    .timeline-item {
        padding-left: 0.5rem;
    }
}

/* ============================================
   10. UTILITY CLASSES
   ============================================ */

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.glow {
    box-shadow: 0 0 20px currentColor;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

/* Smooth transitions for all interactive elements */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   11. INCIDENT DETAIL PAGE STYLES
   ============================================ */

/* Incident Header Banner */
.incident-header-banner {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.incident-header-banner.severity-info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.13) 0%, rgba(59, 130, 246, 0.03) 100%);
    border-left: 4px solid #3b82f6;
}

.incident-header-banner.severity-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.13) 0%, rgba(245, 158, 11, 0.03) 100%);
    border-left: 4px solid #f59e0b;
}

.incident-header-banner.severity-minor {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.13) 0%, rgba(251, 146, 60, 0.03) 100%);
    border-left: 4px solid #fb923c;
}

.incident-header-banner.severity-major {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.13) 0%, rgba(239, 68, 68, 0.03) 100%);
    border-left: 4px solid #ef4444;
}

.incident-header-banner.severity-critical {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.13) 0%, rgba(139, 0, 0, 0.03) 100%);
    border-left: 4px solid #8b0000;
}

/* Badge Size Variants */
.badge-lg {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
}

.badge-sm {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* Timeline Styles */
.timeline-item {
    position: relative;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.timeline-content {
    padding-bottom: 1rem;
    border-left: 2px solid var(--dash-border-primary);
    padding-left: 1rem;
    margin-left: 5px;
}

.timeline-item:last-child .timeline-content {
    border-left: none;
}

/* Timeline marker severity colors */
.timeline-marker.severity-info { background-color: #3b82f6; }
.timeline-marker.severity-warning { background-color: #f59e0b; }
.timeline-marker.severity-minor { background-color: #fb923c; }
.timeline-marker.severity-major { background-color: #ef4444; }
.timeline-marker.severity-critical { background-color: #8b0000; }
.timeline-marker.bg-success { background-color: #22c55e; }
.timeline-marker.bg-primary { background-color: #6366f1; }
.timeline-marker.bg-warning { background-color: #f59e0b; }

/* Pulse animation for timeline */
.pulse-animation {
    animation: timelinePulse 2s infinite;
}

@keyframes timelinePulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
}

/* Update Timeline Styles */
.updates-timeline {
    max-height: 400px;
    overflow-y: auto;
}

.update-item {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.update-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.update-header {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.update-message {
    padding-left: 1rem;
    color: var(--dash-text-secondary);
    font-size: 0.95rem;
}

/* Monitor and server badges */
.monitor-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
}

.monitor-badge.badge-server {
    background: rgba(251, 146, 60, 0.15);
    border-color: rgba(251, 146, 60, 0.3);
    color: #fb923c;
}

/* Orange badge support */
.bg-orange {
    background-color: #fd7e14 !important;
}

/* Incident severity badge */
.incident-severity-badge {
    font-size: 0.85rem;
    padding: 0.35rem 0.6rem;
    font-weight: 600;
}

/* Progress Bar Sizes */
.progress-xs {
    height: 4px;
}

.progress-sm {
    height: 6px;
}

.progress-md {
    height: 8px;
}

/* Incident Status Badge */
.incident-status-badge {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.incident-status-badge.active {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.incident-status-badge.resolved {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

/* Severity status badge colors */
.incident-status-badge.severity-info {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.incident-status-badge.severity-warning {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.incident-status-badge.severity-minor {
    background: rgba(251, 146, 60, 0.15);
    border: 1px solid rgba(251, 146, 60, 0.3);
    color: #fb923c;
}

.incident-status-badge.severity-major {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.incident-status-badge.severity-critical {
    background: rgba(185, 28, 28, 0.15);
    border: 1px solid rgba(185, 28, 28, 0.3);
    color: #b91c1c;
    animation: criticalPulse 2s ease-in-out infinite;
}

/* ============================================
   12. SYSTEM SNAPSHOT TIMELINE
   ============================================ */

/* Timeline Header Cards */
.snapshot-card-before {
    border-left: 4px solid var(--bs-secondary) !important;
}

.snapshot-card-alert {
    border-left: 4px solid var(--bs-danger) !important;
    background-color: rgba(220, 53, 69, 0.05) !important;
}

/* Snapshot Metrics Table */
.snapshot-metrics-table {
    table-layout: fixed;
    font-size: 0.9rem;
}

.snapshot-metrics-table th:nth-child(1),
.snapshot-metrics-table td:nth-child(1) {
    width: 25%;
    border-right: 2px solid var(--bs-border-color);
}

.snapshot-metrics-table th:nth-child(2),
.snapshot-metrics-table td:nth-child(2),
.snapshot-metrics-table th:nth-child(3),
.snapshot-metrics-table td:nth-child(3),
.snapshot-metrics-table th:nth-child(4),
.snapshot-metrics-table td:nth-child(4),
.snapshot-metrics-table th:nth-child(5),
.snapshot-metrics-table td:nth-child(5) {
    width: 18.75%;
}

.snapshot-metrics-table th:nth-child(4),
.snapshot-metrics-table td:nth-child(4) {
    border-right: 2px solid var(--bs-border-color);
}

.snapshot-metrics-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 0.75rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom: 2px solid var(--bs-border-color);
}

.snapshot-metrics-table td {
    padding: 0.75rem 0.5rem;
    vertical-align: middle;
}

.snapshot-metrics-table tbody tr {
    transition: background-color 0.2s ease;
}

.snapshot-metrics-table tbody tr:hover {
    background-color: rgba(var(--bs-body-color-rgb), 0.03);
}

.snapshot-col-alert {
    background-color: rgba(220, 53, 69, 0.06);
    border-left: 3px solid rgba(220, 53, 69, 0.4);
    border-right: 3px solid rgba(220, 53, 69, 0.4);
    font-weight: 500;
}

/* Snapshot Process Table */
.snapshot-process-table {
    font-size: 0.9rem;
}

.snapshot-process-table th:first-child {
    width: 5%;
    text-align: center;
}

.snapshot-process-table th:nth-child(2),
.snapshot-process-table th:nth-child(3),
.snapshot-process-table th:nth-child(4) {
    width: 31.67%;
}

.snapshot-process-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 0.75rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom: 2px solid var(--bs-border-color);
}

.snapshot-process-table td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--bs-border-color);
}

.snapshot-process-table tbody tr {
    transition: background-color 0.2s ease;
}

.snapshot-process-table tbody tr:nth-child(even) {
    background-color: rgba(var(--bs-body-color-rgb), 0.025);
}

.snapshot-process-table tbody tr:hover {
    background-color: rgba(var(--bs-body-color-rgb), 0.06);
}

.process-rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: var(--bs-secondary-bg);
    color: var(--bs-secondary);
}

.process-cell {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.process-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--bs-body-color);
    line-height: 1.3;
}

.process-name-top {
    font-weight: 700;
    font-size: 1rem;
}

.process-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
}

.process-user {
    color: var(--bs-secondary);
    font-weight: 400;
    opacity: 0.8;
}

.process-usage {
    color: var(--bs-body-color);
    font-weight: 500;
}

/* Process List Compact */
.process-list-compact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-list-compact li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--bs-border-color);
    transition: background-color 0.2s ease;
}

.process-list-compact li:last-child {
    border-bottom: none;
}

.process-list-compact li:hover {
    background-color: rgba(var(--bs-body-color-rgb), 0.03);
}

.process-rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: var(--bs-secondary-bg);
    color: var(--bs-secondary-color);
    margin-right: 0.75rem;
}

.process-info {
    flex: 1;
    min-width: 0;
}

.process-name {
    font-weight: 600;
    color: var(--bs-body-color);
    margin-bottom: 0.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.process-user {
    font-size: 0.75rem;
    color: var(--bs-secondary-color);
}

.process-usage-badge {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* ML Context Card */
.ml-context-card {
    background-color: rgba(13, 110, 253, 0.05);
    border: 1px solid rgba(13, 110, 253, 0.15);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.ml-context-title {
    color: var(--bs-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

