.dashboard-section {
    margin-bottom: 30px;
    padding-top: 24px;
    border-top: 1px solid #eef0f4;
    width: 100%;
}

.dashboard-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.dashboard-section-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.ds-title-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ds-title-left i {
    color: var(--color-primary);
    font-size: 14px;
}

.chart-container {
    width: 100%;
    min-height: 300px;
}

.umap-dual-layout {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.umap-panel {
    flex: 1;
    min-width: 380px;
    background: #ffffff;
}

.umap-panel-control {
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--color-text);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.umap-panel-control label {
    white-space: nowrap;
}

.umap-panel-control .styled-select {
    padding: 5px 10px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    background: #fff;
    font-size: 13px;
    outline: none;
}

.umap-panel-control .styled-select:focus {
    border-color: var(--color-primary);
}

.umap-plot {
    width: 100%;
    height: 400px;
}

.scatter-wrapper {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .umap-dual-layout {
        flex-direction: column;
    }
    .umap-panel {
        min-width: 0;
    }
    .umap-plot {
        height: 340px;
    }
}