/* Root Variables for Color Palette */
:root {
    --color1: #02b6f0;
    --color2: #5e95ff;
    --color3: #6adbc4;
}
/* Header Sizes */
h1{
    font-size: 75px;
    margin: 10px;
}

h2{
    font-size: 30px;
    margin: 5px;
}
/* General Body Styling */
body {
    font-family: Playfair Display, serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
    background-color: #e6e6e0;
    color: #000000;
}

/* Chart Styling */
.chart {
    display: flex;
    align-content: center;
}

.bubble-chart {
    margin-top: 60px;
    padding-left: 20px;
}

#tooltip {
    position: absolute;
    visibility: hidden;
    background-color: black;
    color: white;
    padding: 5px;
    border: 1px solid #e6e6e0;
    border-radius: 5px;
    pointer-events: none;
}

/* Text Inside Bubbles */
.bubble-text {
    text-anchor: middle;
    fill: white;
    opacity: 0%;
    font-weight: bold;
}
/* Bubble */
.bubble {
    stroke: #e6e6e0;
    stroke-width: 1px;
}
/* Slider Container Styling */
.slider-container {
    margin: 20px;
    color: #000000;
    font-size: 20px;
}

/* Slider Styling */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 1280px;
    background: transparent;
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 5px;
    background: gray;
    border: none;
    border-radius: 3px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 200px;
    height: 20px;
    background: var(--color1);
    cursor: pointer;
    border: 0px solid gray;
    border-block-style:initial
}
svg {
    display: block; /* Removes unwanted white spaces around the SVG */
}
