.bubbles {
    stroke-width: 2px;
    stroke: white;
}

.bubbles:hover {
    stroke: black;
}

div.tooltip {
    opacity: 0;
    position: absolute;
    background: #141414;
    color: #ffffff;
    border: 2px solid #ed1d16;
    padding: 10px;
    pointer-events: none;
    border-radius: 2px;
    font-family: Helvetica, Arial, sans-serif !important;
}

.font-size-lg {
    font-size: 1.3em;
}

ul {
    list-style-type: none;
}

.mt-10 {
    margin-top: 10px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-50 {
    margin-top: 50px;
}
body {
  background: linear-gradient(to bottom, #060606 0%, #060606 100%);
  height: 100vh;
  margin: 0;
  color: white;
}

#chart {
  max-width: fit-content;
  width: 100%;
}

#chart-container {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}


/* Styles for buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin: 10px;
}
.btn:hover {
    background-color: #0056b3;
}
.btn:active {
    background-color: #00408d;
}

/* Center the buttons */
.button-container {
    text-align: center;
    margin-top: 20px;
}