.info {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

form {
    text-align: left;
    margin-bottom: 25px;
    width: 50%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="text"] {
    width: 260px;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #ddd;
    font-size: 15px;
}

button {
    width: 50%;
    padding: 1rem;
    margin-top: 1.5rem;
    background: #B47E68;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background: #c49987;
}

.resultado {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
}

.encontrada {
    border: 2px solid #B47E68;
    background: transparent;
    color: #155724;
}

.nao-encontrada {
    border: 2px solid #dc3545;
    background: #f8d7da;
    color: #721c24;
}

.erro {
    border: 2px solid #ffc107;
    background: #fff3cd;
    color: #856404;
}

.estado {
    font-size: 18px;
    font-weight: bold;
}

.itens {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.itens th,
.itens td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
    font-size: 14px;
}

.itens thead {
    background: #f0f0f0;
}

.total {
    margin-top: 10px;
    font-size: 16px;
    text-align: right;
}