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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.title {
    color: #2c5aa0;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    font-size: 14px;
}

.stats-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    flex: 1;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.stat-card.green {
    border-left-color: #28a745;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.year-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.year-control label {
    font-size: 14px;
    color: #666;
}

#year-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    color: #333;
}

.indicators-section {
    margin-bottom: 30px;
}

.indicators-title {
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.indicators-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.indicators-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.indicator-btn {
    padding: 10px 20px;
    background: #e9ecef;
    color: #666;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.indicator-btn.active {
    background: #2c5aa0;
    color: white;
}

.indicator-btn:hover {
    background: #4a6fa5;
    color: white;
}

.chart-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.chart {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 400px;
    padding: 20px 0;
    position: relative;
    gap: 5px;
}

.chart::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;
    height: 1px;
    background: #e9ecef;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}

.bar {
    width: 30px;
    background: #90c695;
    margin-bottom: 10px;
    transition: all 0.5s ease;
    border-radius: 4px 4px 0 0;
    opacity: 0;
    transform: translateY(20px);
}

.bar.animated {
    opacity: 1;
    transform: translateY(0);
}

.bar.gray {
    background: #c8c8c8;
}

.bar-label {
    font-size: 12px;
    color: #666;
    text-align: center;
}

.y-axis {
    position: absolute;
    left: -40px;
    top: 20px;
    bottom: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
    }
    
    .stats-row {
        flex-direction: column;
    }
    
    .controls {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .indicators-buttons {
        justify-content: center;
    }
    
    .chart {
        height: 300px;
        gap: 2px;
    }
    
    .chart-bar {
        width: 40px;
    }
    
    .bar {
        width: 20px;
    }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 * require_tree .


*/
