.dv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: sans-serif;
}

.dv-header {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.dv-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.dv-card {
    flex: 2;
    min-width: 300px;
    height: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dv-table-side {
    flex: 1;
    min-width: 250px;
    max-height: 400px;
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dv-map-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 20px;
}

.dv-map-svg {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}


.dv-section {
    flex-direction: column;
    align-items: stretch;
}

.dv-card, .dv-table-side {
    flex: none;
    width: 100%;
}

.dv-table-side {
    max-height: 300px;
}

