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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-light);
    min-height: 100vh;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Professional Header */
header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="0,0 1000,50 1000,100 0,100"/></svg>') no-repeat bottom;
    background-size: cover;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
    letter-spacing: -0.025em;
    position: relative;
}

header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Modern Cards */
.card {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

/* Professional Buttons */
.btn-primary, .btn-secondary, .btn-success, .btn-danger {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--background-white);
    color: var(--text-secondary);
    border: 1px solid var(--border-medium);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-danger {
    background: linear-gradient(135deg, var(--error-color), #dc2626);
    color: white;
    box-shadow: var(--shadow-sm);
}

/* Upload Areas */
.upload-area {
    border: 2px dashed var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--background-light);
    position: relative;
}

.upload-area.dragover {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.02);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.upload-placeholder .upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.upload-placeholder p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Status Cards */
.status-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    background: var(--background-white);
    box-shadow: var(--shadow-sm);
}

.status-card.success {
    background: #f0fdf4;
    color: #166534;
    border-left-color: var(--success-color);
}

.status-card.error {
    background: #fef2f2;
    color: #991b1b;
    border-left-color: var(--error-color);
}

.status-card.processing {
    background: #eff6ff;
    color: #1e40af;
    border-left-color: var(--primary-color);
}

/* Charts and Grids */
.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.chart-container {
    background: var(--background-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.chart-container:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

/* Navigation */
.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    border: 1px solid var(--border-light);
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.app-title {
    flex: 1;
    min-width: 300px;
}

.app-navigation {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Enhanced Form Elements */
.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: var(--background-white);
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* File Info */
.file-info {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1.1rem;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .app-header {
        flex-direction: column;
        text-align: center;
    }
    
    .app-title {
        min-width: auto;
    }
    
    .card {
        padding: 1.5rem;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Professional Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Utility Classes */
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.p-4 { padding: 2rem; }

/* === ENHANCED CHARTS ADDITIONS === */
.chart-section {
    margin-bottom: 40px;
}

.chart-section h3 {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.gallery-controls {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.gallery-controls select {
    padding: 10px 15px;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: 14px;
    min-width: 200px;
    background: var(--background-white);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.preview-chart {
    background: var(--background-white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.preview-chart img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.chart-container {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chart-container:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.chart-container.featured-chart {
    grid-column: 1 / -1;
    text-align: center;
}

.chart-container h4 {
    margin-bottom: 15px;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.chart-description {
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .gallery-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .gallery-controls select {
        min-width: auto;
    }
}

/* === ENHANCED DEVELOPMENT DASHBOARD STYLES === */
.dashboard-section {
    margin-bottom: 40px;
    background: var(--background-white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.metric-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.metric-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.analysis-card {
    background: var(--background-light);
    padding: 20px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
}

.indicators-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.indicator-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    background: var(--background-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.chart-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.charts-container {
    min-height: 400px;
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.chart-category {
    margin-bottom: 30px;
}

.chart-category h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--primary-color);
}

.category-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.enhanced-chart-container {
    background: var(--background-white);
    padding: 15px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}

.enhanced-chart-container:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.chart-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.8rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.btn-small:hover {
    background: var(--text-secondary);
}

.dev-tools {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.dev-output {
    background: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 15px;
    min-height: 100px;
}

.dev-output-item {
    margin-bottom: 15px;
}

.dev-output-item:last-child {
    margin-bottom: 0;
}

.analysis-placeholder {
    text-align: center;
    padding: 40px 20px;
    background: var(--background-white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--primary-color);
}

.focused-chart {
    text-align: center;
}

.analysis-details {
    background: var(--background-light);
    padding: 15px;
    border-radius: var(--radius-lg);
    margin: 20px 0;
    text-align: left;
}

.loading-spinner {
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.fallback-dashboard {
    text-align: center;
    padding: 20px;
}

.basic-charts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .analysis-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-metrics {
        grid-template-columns: 1fr;
    }
    
    .category-charts {
        grid-template-columns: 1fr;
    }
    
    .chart-controls {
        flex-direction: column;
    }
}

/* ===== ENHANCED SHOCK CONFIGURATION SYSTEM ===== */
/* Added for modular-builder.html - Consistent with design system */

.shock-configuration-panel {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.shock-configuration-panel:hover {
    box-shadow: var(--shadow-lg);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.panel-header h3 {
    margin: 0;
    color: var(--text-primary);
}

.shock-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Switch Toggle - Consistent with your design */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-medium);
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Advanced Shocks Panel */
.advanced-shocks-panel {
    margin-top: 1.5rem;
}

.shock-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.shock-section h4 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Country Selection Grid */
.country-selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.country-category h5 {
    margin: 0 0 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.country-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
    max-height: 200px;
    overflow-y: auto;
    padding: 1rem;
    background: var(--background-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.country-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.country-checkbox-item:hover {
    background: var(--background-light);
}

.country-checkbox-item input[type="checkbox"] {
    margin: 0;
}

/* Shock Type Tabs */
.shock-type-tabs {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.shock-tab {
    background: none;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.shock-tab.active {
    background: var(--primary-color);
    color: white;
}

.shock-tab:hover:not(.active) {
    background: var(--background-light);
    color: var(--text-primary);
}

.shock-tab-content {
    display: none;
}

.shock-tab-content.active {
    display: block;
}

/* Shock Timeline */
.shock-timeline {
    background: var(--background-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.country-shock-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--background-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.country-header h5 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.period-controls-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-period {
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.period-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.period-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.period-range {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.variable-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.variable-control {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.variable-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.variable-value {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

/* Slider Styles - Consistent with your design */
.variable-control input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-light);
    outline: none;
    -webkit-appearance: none;
}

.variable-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

.variable-control input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Timeline Visualization */
.timeline-container {
    background: var(--background-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.period-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.timeline-visualization {
    height: 100px;
    background: var(--background-light);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.timeline-bar {
    position: absolute;
    height: 30px;
    border-radius: var(--radius-sm);
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-bar:hover {
    opacity: 1;
    transform: scaleY(1.1);
}

/* Preset Controls */
.variable-presets {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-color);
}

.variable-presets select {
    width: 200px;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    background: var(--background-white);
}

.variable-presets label {
    font-weight: 600;
    color: var(--text-primary);
    margin-right: 0.75rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .country-selection-grid {
        grid-template-columns: 1fr;
    }
    
    .variable-controls {
        grid-template-columns: 1fr;
    }
    
    .shock-type-tabs {
        flex-wrap: wrap;
    }
    
    .shock-tab {
        flex: 1;
        min-width: 120px;
        text-align: center;
    }
    
    .panel-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Loading state for shock configuration */
.shock-configuration-panel.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success state */
.shock-configuration-panel.success {
    border-left: 4px solid var(--success-color);
}

/* Error state */
.shock-configuration-panel.error {
    border-left: 4px solid var(--error-color);
}