#scatter-content {
    width: 50%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 80vh;
}

#scatterplot-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 65%;
}

#scatterplot {
    width: 100%;
    height: auto;
    max-height: 100%;
    max-width: 100%;
}

.axis-label {
    fill: black;
    text-anchor: middle;
    font-size: 16px;
    /* Adjust this value to make the labels bigger */
}

.dot-circle {
    filter: drop-shadow(2px 4px 6px black);
}

#controls-container {
    height: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

#controls-container h2 {
    margin-bottom: 10px;
}

#controls-container label {
    margin-right: 10px;
}

#controls-container select {
    margin-bottom: 20px;
}
