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

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

.chart-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-container {
    width: 100%;
    height: 500px;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

.title-section {
    text-align: center;
    margin: 20px 0;
}

.main-title {
    color: #2c9678;
    font-size: 2em;
    margin-bottom: 10px;
}

.sub-title {
    color: #2c9678;
    font-size: 1.5em;
    margin: 15px 0;
    text-align: center;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    width: 80%;
    max-width: 800px;
    position: relative;
    max-height: 80vh;
}

.modal-table-container {
    max-height: calc(80vh - 60px);
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #333;
    background-color: #f0f0f0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 12px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.comparison-table th {
    background-color: #f5f5f5;
    position: sticky;
    top: 0;
    z-index: 1;
}

.comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}