.graph {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 400px;
    margin: 15px 0;
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, transparent 95%, #eee 95%, #eee 100%);
    background-size: 100% 40px;
}

.brands_row {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    color: whitesmoke;
}


.bar {
    background-color: lightgray;
    font-size: medium;
    /* font-family: Georgia, 'Times New Roman', Times, serif; */
    position: relative;
    text-align: center;
    color: white;
    transform-origin: bottom;
    transition: height 0.3s ease;
    border-radius: 8px 8px 0 0;
}


.bar::before {
    /* content: attr(data-provider); */
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    color: whitesmoke;
    background-color: green;
    font-size: 14px;
    white-space: nowrap;
}

/* .bar::after {
    content: attr(data-price);
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 12px;
    white-space: nowrap;
    color: #333;
} */

.cubbit_prices {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    font-size: 24px;
    color: #4CAF50;
}

.cubbit_prices span {
    padding: 10px 20px;
    border-radius: 8px;
    background-color: #f8f8f8;
}

#storage-slider {
    width: 100%;
    margin: 20px 0;
}

.slider-container {
    text-align: center;
    margin: 40px 0;
}

#storage-value {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #6B4BFF;
    border-radius: 20px;
    color: #6B4BFF;
    font-weight: bold;
}