/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 15px;
    line-height: 1.6;
    color: #333;
}

/* Main Dashboard Layout */
.dashboard {
    max-width: 1800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: calc(100vh - 30px);
}

/* Header with Logos */
.header-logos {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 20px 30px;
    border-bottom: 3px solid #3498db;
}

.logos-container {
    display: grid;
    grid-template-columns: 150px 1fr 150px;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.logo-arcadis,
.logo-wbcsd {
    max-width: 170px; /* 15% más grande que 140px */
    max-height: 65px; /* 15% más grande que 50px */
    width: auto;
    height: auto;
    filter: brightness(0) invert(1); /* Make logos white for dark background */
    transition: all 0.3s ease;
}

.logo-arcadis:hover,
.logo-wbcsd:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

/* Logo link styles */
.logo-link {
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.header-title {
    text-align: center;
    padding: 0 20px;
}

.header-title h1 {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
}

.header-title p {
    font-size: 0.9em;
    opacity: 0.9;
    font-weight: 300;
    color: #bdc3c7;
}

/* Main Content Grid */
.main-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 20px;
    min-height: calc(100vh - 150px);
}

/* Left Control Panel */
.controls-panel {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 25px;
    overflow-y: auto;
    max-height: 100vh;
    scrollbar-width: thin;
    scrollbar-color: #3498db transparent;
}

.controls-panel::-webkit-scrollbar {
    width: 6px;
}

.controls-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.controls-panel::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 3px;
}

.controls-panel::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

/* Right Results Panel */
.results-panel {
    padding: 25px;
    overflow-y: auto;
    max-height: 100vh;
    scrollbar-width: thin;
    scrollbar-color: #bdc3c7 transparent;
}

.results-panel::-webkit-scrollbar {
    width: 6px;
}

.results-panel::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 3px;
}

.results-panel::-webkit-scrollbar-thumb {
    background: #bdc3c7;
    border-radius: 3px;
}

.results-panel::-webkit-scrollbar-thumb:hover {
    background: #95a5a6;
}

/* Panel Titles */
.panel-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.results-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Case Premise */
.case-premise {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 0.85em;
    line-height: 1.4;
    border-left: 4px solid #3498db;
}

/* Control Sections */
.control-section {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.control-section:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.future-considerations:hover {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    transform: none;
}

.ev-readiness-section:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: none !important;
}

.section-title {
    font-size: 1.0em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ecf0f1;
    display: flex;
    align-items: center;
}

.section-title::before {
    content: "⚙️";
    margin-right: 8px;
}

.panel-description {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 18px;
    font-size: 0.75em;
    line-height: 1.5;
    color: #e8f4f8;
    border-left: 3px solid rgba(52, 152, 219, 0.4);
    font-style: italic;
}

.panel-description strong {
    color: #74b9ff;
    font-weight: 600;
}

/* Year Info Note */
.year-info-note {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    font-size: 0.75em;
    line-height: 1.5;
    color: #e8f4f8;
    border-left: 3px solid rgba(241, 196, 15, 0.4);
    font-style: italic;
}

.year-info-note strong {
    color: #f1c40f;
    font-weight: 600;
}

/* View Controls */
.view-controls {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.control-label {
    color: #bdc3c7;
    font-size: 0.85em;
    margin-bottom: 5px;
    display: block;
    font-weight: 600;
}

.control-select {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 8px;
    cursor: pointer;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.control-select:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-1px);
}

.control-select:focus {
    outline: none;
    box-shadow: 0 0 0 2px #3498db;
}

/* Fleet Size Control */
.fleet-size-control {
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 15px;
    border: 2px solid rgba(231, 76, 60, 0.3);
}

.fleet-size-value {
    background: #e74c3c !important;
    font-size: 0.9em !important;
    padding: 4px 10px !important;
    font-weight: bold;
}

.fleet-slider {
    height: 8px !important;
}

.fleet-slider::-webkit-slider-thumb {
    width: 20px !important;
    height: 20px !important;
    background: #e74c3c !important;
}

.fleet-slider::-webkit-slider-thumb:hover {
    background: #c0392b !important;
}

/* Slider Groups */
.slider-group {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.slider-group:hover {
    background: rgba(255, 255, 255, 0.1);
}

.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: bold;
    color: #bdc3c7;
    font-size: 0.85em;
}

.slider-value {
    background: #3498db;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    min-width: 45px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Sliders */
.slider {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider:hover {
    opacity: 1;
    transform: scaleY(1.2);
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #3498db;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    background: #2980b9;
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #3498db;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.slider::-moz-range-thumb:hover {
    background: #2980b9;
    transform: scale(1.2);
}

/* Future Considerations Section */
.future-considerations {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    border-left: 4px solid #f39c12;
    opacity: 0.85;
    position: relative;
}

.future-considerations .section-title {
    color: white;
    font-size: 1.0em;
    margin-bottom: 15px;
}

.version-note {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    font-size: 0.85em;
    line-height: 1.4;
    color: #ecf0f1;
}

.version-note p {
    margin: 0;
    font-weight: 500;
}

.disabled-slider {
    opacity: 0.6;
    position: relative;
}

.disabled-slider .slider-label {
    color: #bdc3c7;
}

.disabled-slider .slider-value {
    color: #95a5a6;
    background: rgba(149, 165, 166, 0.3);
}

.disabled-slider .slider {
    opacity: 0.4;
    cursor: not-allowed;
}

.disabled-slider .slider:hover {
    transform: none;
}

.future-impact-note {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-top: 15px;
    font-size: 0.8em;
    line-height: 1.4;
}

.future-impact-note h4 {
    color: #f39c12;
    margin: 0 0 8px 0;
    font-size: 0.9em;
}

.future-impact-note ul {
    margin: 0;
    padding-left: 16px;
    color: #bdc3c7;
}

.future-impact-note li {
    margin-bottom: 4px;
}

.future-impact-note strong {
    color: #ecf0f1;
}

/* Reset Button */
.reset-button {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-size: 0.9em;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.reset-button:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.reset-button:active {
    transform: translateY(0);
}
/* EV Readiness Section */
.ev-readiness-section {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #3498db;
    color: white;
    margin-bottom: 25px;
}

/* Reset Button in Financial Section */
.reset-button-financial {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin: 20px 0;
    transition: all 0.3s ease;
    font-size: 0.95em;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    text-align: center;
}

.reset-button-financial:hover {
    background: linear-gradient(135deg, #27ae60, #229954);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.reset-button-financial:active {
    transform: translateY(0);
}

.ev-readiness-section .section-title {
    color: white;
    font-size: 1.1em;
    margin-bottom: 18px;
}

.ev-readiness-info {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.readiness-metric {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9em;
}

.readiness-label {
    font-weight: 600;
    color: #ecf0f1;
}

.readiness-value {
    font-weight: bold;
    color: white;
}

.readiness-score.high {
    color: #2ecc71;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.readiness-score.medium {
    color: #f39c12;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.readiness-score.low {
    color: #e74c3c;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.readiness-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.readiness-factor {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.85em;
}

.factor-label {
    color: #bdc3c7;
    font-weight: 500;
}

.factor-value {
    color: white;
    font-weight: bold;
}

.readiness-impact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
}

.impact-title {
    font-weight: bold;
    margin-bottom: 8px;
    color: #f39c12;
    font-size: 0.9em;
}

.impact-description {
    font-size: 0.85em;
    line-height: 1.4;
    color: #ecf0f1;
}

/* Updated Fleet Summary for EV Readiness */
.vehicle-summary {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

.summary-title {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.summary-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.summary-value {
    font-size: 1.1em;
    font-weight: bold;
    display: block;
}

.summary-label {
    font-size: 0.75em;
    opacity: 0.9;
    margin-top: 4px;
}

/* Vehicle Summary */
.vehicle-summary {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.3);
}

.summary-title {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.summary-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.summary-value {
    font-size: 1.1em;
    font-weight: bold;
    display: block;
}

.summary-label {
    font-size: 0.75em;
    opacity: 0.9;
    margin-top: 4px;
}

/* ROI Indicator */
.roi-indicator {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.3);
}

.roi-value {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.roi-label {
    font-size: 0.9em;
    opacity: 0.9;
    margin-bottom: 10px;
}

.savings-info {
    font-size: 1.1em;
    margin-top: 10px;
}

.savings-amount {
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.per-vehicle-info {
    font-size: 0.9em;
    margin-top: 5px;
    opacity: 0.9;
}

.per-vehicle-amount {
    font-weight: bold;
}

/* Scenarios Grid */
.scenarios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.scenario {
    background: white;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.scenario:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.scenario-diesel { 
    border-left-color: #e74c3c;
}

.scenario-electric { 
    border-left-color: #27ae60;
}

.scenario h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1em;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.metric {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 6px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 0.85em;
    transition: all 0.3s ease;
}

.metric:hover {
    background: #e9ecef;
    transform: translateX(3px);
}

.metric-label {
    font-weight: bold;
    color: #34495e;
}

.metric-value {
    color: #2980b9;
    font-weight: bold;
}

/* Charts Grid */
.charts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.chart-container {
    background: white;
    border-radius: 15px;
    padding: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    width: 100%;
    transition: all 0.3s ease;
}

.chart-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.chart-container h3 {
    font-size: 1.0em;
    margin-bottom: 12px;
    color: #2c3e50;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 2px solid #ecf0f1;
}

.chart-content {
    width: 100%;
    height: 350px;
    position: relative;
}

/* Recommendations */
.recommendations {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    border-radius: 15px;
    padding: 18px;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(116, 185, 255, 0.3);
}

.recommendations h3 {
    margin-bottom: 12px;
    font-size: 1.0em;
    text-align: center;
}

.recommendations-list {
    list-style-type: none;
    column-count: 2;
    column-gap: 20px;
    column-rule: 1px solid rgba(255, 255, 255, 0.2);
}

.recommendations-list li {
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
    break-inside: avoid;
    font-size: 0.85em;
    line-height: 1.4;
}

.recommendations-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #fff;
}

/* Utility Classes */
.positive { 
    color: #27ae60; 
    font-weight: bold; 
}

.negative { 
    color: #e74c3c; 
    font-weight: bold; 
}

.highlight {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.controls-panel {
    animation: slideInLeft 0.4s ease;
}

.results-panel {
    animation: slideInRight 0.4s ease;
}

.scenario {
    animation: fadeIn 0.6s ease;
}

.chart-container {
    animation: fadeIn 0.8s ease;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    border-radius: 15px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    margin-bottom: 10px;
    font-size: 0.9em;
    line-height: 1.4;
}

.footer-content a {
    color: #74b9ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #0984e3;
    text-decoration: underline;
}

.footer-links {
    margin-top: 10px;
    font-size: 0.85em;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    padding: 0 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #74b9ff;
    text-decoration: underline;
}

.separator {
    color: #7f8c8d;
    margin: 0 5px;
}

.version-info {
    color: #74b9ff;
    font-weight: bold;
    font-size: 0.9em;
    padding: 0 8px;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .charts {
        grid-template-columns: 1fr;
    }
    
    .chart-content {
        height: 320px;
    }
}

@media (max-width: 1200px) {
    .dashboard {
        border-radius: 15px;
    }

    .logos-container {
        grid-template-columns: 120px 1fr 120px;
        gap: 15px;
    }

    .logo-arcadis,
    .logo-wbcsd {
        max-width: 110px;
        max-height: 40px;
    }

    .header-title h1 {
        font-size: 1.5em;
    }

    .header-title p {
        font-size: 0.8em;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .controls-panel {
        max-height: none;
        order: 2;
    }
    
    .results-panel {
        order: 1;
        max-height: none;
    }
    
    .charts {
        grid-template-columns: 1fr;
    }
    
    .scenarios {
        grid-template-columns: 1fr;
    }
    
    .recommendations-list {
        column-count: 1;
    }
    
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .dashboard {
        border-radius: 15px;
    }

    .header-logos {
        padding: 15px 20px;
    }

    .logos-container {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .logo-item {
        height: 50px;
    }

    .logo-arcadis,
    .logo-wbcsd {
        max-width: 120px;
        max-height: 35px;
    }

    .header-title h1 {
        font-size: 1.4em;
        margin-bottom: 8px;
    }

    .header-title p {
        font-size: 0.85em;
    }

    .main-content {
        gap: 15px;
    }
    
    .controls-panel,
    .results-panel {
        padding: 20px;
    }
    
    .panel-title {
        font-size: 1.2em;
    }
    
    .results-title {
        font-size: 1.5em;
    }
    
    .roi-value {
        font-size: 2em;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .chart-content {
        height: 280px;
    }
    
    .slider-label {
        font-size: 0.8em;
    }
    
    .metric {
        font-size: 0.8em;
        padding: 4px;
    }
}

@media (max-width: 480px) {
    .header-logos {
        padding: 12px 15px;
    }

    .header-title h1 {
        font-size: 1.2em;
    }

    .header-title p {
        font-size: 0.8em;
    }

    .logo-arcadis,
    .logo-wbcsd {
        max-width: 100px;
        max-height: 30px;
    }

    .case-premise {
        font-size: 0.8em;
        padding: 12px;
    }
    
    .control-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .slider-group {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .chart-content {
        height: 250px;
    }
    
    .recommendations {
        padding: 15px;
    }
    
    .footer {
        padding: 15px;
        margin-top: 30px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        padding: 0;
    }
    
    .dashboard {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .controls-panel {
        display: none;
    }
    
    .results-panel {
        padding: 20px;
    }
    
    .chart-container {
        break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .footer {
        display: none;
    }
}
