/* Name: Nandana Shibu Elizabeth
Email: nshibuel@asu.edu  */

h1{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

h3 {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
}

.myContainer {
    margin:auto;
    width:1400px;
}

select {
    width: 20px;
    height: 40px;
    font-size: 14px;
}

.control-panel {
    margin-bottom: 2px;
}

.control-panel-bg {
    background-color: rgb(196, 196, 253);
}

.scatterplot-bg {
    background-color: rgb(153, 153, 250);;
}

.boxplot-bg {
    background-color: rgb(127, 127, 253);
}

.ctrl {
    margin-bottom: 5px;
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.control {
    display: flex;
    gap: 5px;
    width: 200px;
    align-items: center;
    flex: 1;
}

.plots-display {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: stretch;
}

.plots-display > div {
    flex: 1;
    gap: 5px;
}

#scatterplot, #boxplot {
    width: 100%;
    height: 500px;
}

svg {
    width: 580px;
    height: 500px;
    background-color: rgb(253, 248, 255);
    border: 1px solid lightgray;
    border-radius: 3px;
}

div.tooltip {
    position: absolute;
    text-align: center;
    width: 150px;
    height: 50px;
    padding: 4px;
    font: 15px sans-serif;
    background: white;
    border-color: black;
    border: 2px solid black;
    border-radius: 3px;
    pointer-events: none;
}