
body {
    overflow: hidden; /*evitar barra de rolagem*/
}


.container {
    width: 100%;
    max-width: 800px;
    max-height: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 2px solid #000;
}

.Tgeral{
    color:rgb(138, 43, 226);
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    padding-top: 30px;
}

.titulo{
    font-family: Arial, Helvetica, sans-serif;
    flex: 1;
    margin-right: 10px; 
    min-width: 200px;
    font-size: 16px;
    text-align: center;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input {
    display: flex;
    justify-content: center;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #ccc;
    height: 30px;
    width: 150px;
    background-color: #F0FFFF;

}

select {
    border-radius: 5px;
    text-align: center;
    border: 1px solid #ccc;
    height: 25px;
    width: 150px;
    background-color: #F0FFFF;

}

.teor-fosforo,
.teor-potassio,.Fase-da-Planta {
    display: flex;
    max-width: 200px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    padding-bottom: 20px;
}

.botao {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 30px;
}

.botao button {
    width: 200px;
    height: 40px;
    border-radius: 15px;
    border-color: white;
    font-size: 18px;
    background-color: #00FA9A;
    transition: background-color 0.3s ease; /* Transição suave */
}

.botao button:hover {
    background-color: #FF8C00;
}


.resultado {
    font-family: Arial, Helvetica, sans-serif;
    text-align: justify;
    font-size: 15px;
    padding: 5px;
    color: green;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 30px;
}

.msg {
    text-align: justify;
    padding: 10px;

}

.n,
.p,
.k {
    padding-bottom: 15px;
    text-align: center;
}

.rodape {
    display: flex;
    max-width: 300px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-top: 10px;
    padding-bottom: 20px;
}

.rodape a {
    text-decoration: none;
    color: rgb(138, 43, 226);
}

a:hover {
    color: #DC143C;
}

/* RESPOSIVIDADE*/

@media(max-width: 350px) {

    .p-k {
        display: block;
    }

    h1 {
        font-size: 20px;
    }

    .rodape {
        max-width: 250px;
    }
}