/* Estilos CSS para os quadros do menu */
body {
    background-color: #f1f1f1;
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
}

.message {
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

.error {
    color: #f00;
}

.success {
    color: #008000;
}

table {
    width: 100%;
    margin-top: 30px;
    border-collapse: collapse;
}

table th,
table td {
    padding: 8px;
    border: 1px solid #ccc;
}       

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.menu-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.menu-item {
    width: 200px;
    height: 250px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    font-family: "Roboto", sans-serif;
    transition: background-color 0.3s;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.menu-item:hover {
    background-color: #f5f5f5;
}

.menu-item img {
    max-width: 150px;
    max-height: 150px;
}

.menu-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
    color: #333333;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.menu-title img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.form-group {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    vertical-align: top;
}
  
.form-group label {
    display: block;
}
  
.form-group input,
.form-group select,
.form-group textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
}
  
.form-container {
    text-align: center;
}

.imagem {
    width: 150px;
    transition: transform 0.3s ease-in-out;
}

.imagem:hover {
    transform: scale(1.1);
}
