
body {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f5;
}
.container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}
h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}
.description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #333;
}
.controls {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
    justify-content: center;
}
.control-group {
    flex: 1;
    min-width: 300px;
}
.slider-container {
    margin-top: 10px;
}
.slider-value {
    display: inline-block;
    width: 60px;
    text-align: center;
    font-weight: bold;
}
input[type="range"] {
    width: 100%;
}
.chart-container {
    position: relative;
    height: 500px;
    margin-bottom: 30px;
}
.info-box {
    position: absolute;
    top: 80px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.4);
    font-size: 16px;
    max-width: 250px;
}
.info-title {
    margin-bottom: 8px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}
.legend {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 20px;
}
.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
}


/* Hamburger Menu */
.hamburger-menu {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}
.menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s;
}
.menu-btn:hover {
    background-color: #2980b9;
    transform: scale(1.05);
}
.menu-btn i {
    color: white;
    font-size: 24px;
}
.menu-content {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
}
.menu-content.show {
    display: block;
    animation: fadeIn 0.3s;
}
.menu-item {
    margin: 1em;
    background-color: #3498db;
    border-radius: .5em;
    color: white;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}
.menu-item:hover {
    background-color: #67aedd;
}
.menu-item i {
    margin-left: 5px;
    margin-right: 10px;
    color: #ffffff;
}


/* Modal Dialogs */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    animation: fadeIn 0.3s;
    overflow-y: auto;
}
.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 800px;
    position: relative;
    animation: slideIn 0.3s;
}
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}
.close-btn:hover {
    color: #333;
}
.modal-header {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}
.modal-header h2 {
    margin: 0;
    color: #2c3e50;
}
.modal-body {
    padding: 10px 0;
    line-height: 1.6;
}
