body{
    font-family: 'Times New Roman', Times, serif;
}

.box{
    background-color: rgb(30, 33, 36);
}

#stockName{
    margin-top: 3%;
}

#graphStock {
    max-width: 100%; /* Set a maximum width */
    height: 100%;
}

.tooltip {
    position: absolute;
    padding: 5px;
    border-radius: 5px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
}

.circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 70px; 
    height: 70px; 
    margin: 10px; 
    font-size: 11px; /* Font size for the numbers */
}

.number {
    font-weight: bold;
    font-size: 15px;
}

#buy{
    background-color: rgb(0, 41, 1);
    color: rgb(0,200,5);
}

#hold{
    background-color: black;
}

#sell{
    background-color: rgb(51, 16, 0);
    color: rgb(255,80,0);
}

#About{
    margin-top: 5%;
    border-bottom: 1px black;
}

.details{
    margin-top: 2%;
    font-weight: bold;
}

.borderBtn{
    border-bottom: 1px solid white; 
}

@media (max-width: 500px) {
    .circle{
        width: 50px; 
        height: 50px; 
        font-size: 8px;
    }
}

@media (max-width: 450px) {
    .circle{
        width: 30px; 
        height: 30px; 
        font-size: 5px;
    }

    .number{
        font-size: 7px;
    }
}