body{
    background-color: #808080ab;
}

.tabela
{
    border-right: 1px solid white;
    text-align: center;
}

.divCalcPedra
{
    margin-bottom: 5px;
}

.divCalcPedra span
{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
}

.inputPedra
{
    width: 50%;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
}
.spanPedra
{

}

.calculadora
{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: bold;
    text-align: center;
}

.divCalculadora
{
    background-color: aliceblue;
    border-radius:  10px; padding: 10px;
    margin-left: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

divCalcPedra {
    display: flex;
    flex-direction: column; /* Empilhar os elementos verticalmente em dispositivos menores */
}

.divCalcPedra span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 200px; /* Ajuste conforme necessário */
    padding: 5px; /* Ajuste o preenchimento conforme necessário */
}

.divCalcPedra img {
    margin-right: 10px; /* Ajuste conforme necessário para o espaço entre a imagem e o texto */
}

.charts-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 columns for larger screens */
    gap: 10px;
    margin-bottom: 20px;
}

iframe {
    border: none;
    text-align: center;
    /*
    border: 2px solid #ddd !important;
    box-shadow: 0 0 5px rgba(0,0,0,0.2) !important;
    width: 100% !important;
    height: 425px !important;
    overflow: hidden !important;*/
}

/* CELULAR */
@media only screen and (max-width: 768px)
{
    .divCalculadora{margin-left: 0; margin-top: 10px;}
    .charts-container {
        grid-template-columns: repeat(1, 1fr); /* 2 columns for mobile screens */
    }
}

@media only screen and (max-width:991px)
{

}