body{
    font-family: sans-serif;
}
.tooltip {
    position: absolute;
    text-align: left;
    padding: 10px;
    font: 12px sans-serif;
    background: rgba(252,252,252,0.9);
    border: 0.5px solid grey;
    border-radius: 5px;
    pointer-events: none;
    pointer-events: none;
    background-color: "#FF5C61";
    z-index:999999;
    opacity: 0;
}

.graph-svg-component {
    background-color: white;
}

/* In your style.css file */
.graph-container {
    font-family: sans-serif;
    font-weight: bold;
}

#graph {
    background-color: white;
}

input{
    border: 2px solid #ccc;
    outline: none;
    border-radius: 5px;
    padding-left: 10px;
}

input[type="text"]:focus {
    border-color: #007bff; /* Change border color to blue on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add a subtle shadow */
}

#secondDataButton {
    background-color: #fff; /* White background */
    color: #333;           /* Dark text for high contrast */
    border: 1px solid #ccc;/* Subtle border */
    cursor: pointer;       /* Pointer cursor on hover */
    padding: 3px 8px;
    margin-left: 20px;     /* Space to the left */
    transition: all 0.3s;  /* Smooth transition for interactions */
    border-radius:5px;
}

#secondDataButton:hover {
    /*background-color: #f8f8f8; /* Slightly darker background on hover */
}

#secondDataButton:active {
    background-color: #eee; /* Even darker when clicked */
}

#hed{
    color:black;
    font-weight: 600;
    font-size: 1.1em;
}

#sub{
    padding-top: 10px;
    font-size: .9em;
}

#inputbox{
    padding-top: 10px;
}

.select-container {

}

#credit{
    color:dimgrey;
    font-size: .8em;
    position:relative;
    bottom:5%;
}


.select-container select {
    border: none;
    outline: none;
    padding: 5px;
    border-bottom: 1px solid #ccc;
}


.select-container select::-ms-expand {
    display: none;
}

