body {
    font-family: Arial;
    background: #fff7f0;
    margin: 0;    
}
h1 {
    font-size: 20px;
    text-align: center;
}
.nome-produto {
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
}
.nome-produto h2{
    font-size: 16px;
}
.visualizar{
    font-size: 12px;
    color: #005dc7;
    text-decoration: none;
    font-weight: bold;
}
.produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}
.produto {
    background: #fcd886;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
.produto.indisponivel {
    background-color: #fcd886;
    opacity: 0.6;
}
button {
    margin-top: 10px;
    padding: 14px 28px;
    background-color: #ffb703;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
    background-color: #faa307;
    transform: translateY(-2px);
}

button:active {
    background-color: #e76f51;
    transform: translateY(0);
}

input[type="text"],
input[type="password"] {
    padding: 12px;
    border: 2px solid rgba(0,0,0,0.5);
    border-radius: 8px;
    width: 100%;
    font-size: 18px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    background-color: #fff;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #faa307;
    box-shadow: 0 0 0 3px rgba(250, 163, 7, 0.2);
}
.form-compra {
    display: none;
    margin-top: 10px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    padding: 10px;
    border: 1px solid #ccc;
}
.login {
    max-width: 300px;
    margin: 100px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
}
