
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.consulta-box {
    font-family: 'Bebas Neue', sans-serif;
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 12px;
    box-shadow: 2px 2px 10px #ccc;
}

.consulta-box h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.consulta-box input[type="text"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    font-size: 20px;
}

.consulta-box button {
    width: 100%;
    padding: 12px;
    background-color: #00c3c3;
    color: white;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.consulta-box .resultado {
    margin-top: 20px;
    padding: 20px;
    background-color: #222;
    color: white;
    font-size: 20px;
    border-radius: 12px;
    text-align: left;
}

.consulta-box .resultado.resalto {
    background-color: black;
}

.consulta-box .resultado.resalto .total-gramos {
    color: red;
    font-weight: bold;
}
