   
body {
    background-color: #ffa500; /* Laranja cor de raposa */
    color: #fff; /* Texto branco */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

form {
    margin-bottom: 20px;
    max-width: 400px;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 5px;
}

select {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
}

input[type="button"] {
    background-color: #fff;
    border: none;
    color: #ffa500;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

input[type="button"]:hover {
    background-color: #f2f2f2;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ff0000; /* Linhas de tabela em vermelho */
}

th {
    background-color: #ffa500; /* Laranja cor de raposa */
    color: #fff; /* Texto branco */
}

#descricaoDivisaoContainer, #medidasContainer {
    margin-top: 20px;
    padding: 10px;
    background-color: #fff;
    color: #000;
    resize: vertical;
    min-width: 60%;
    max-width: 100%;
}

#altura {
    width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    form, table {
        max-width: 100%;
    }
}

@media (min-width: 601px) {
    body {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

.gray-text {
    color: gray;
}

/* Novo estilo para centralizar os botões */
#botoesContainer {
    display: flex;
    justify-content: center;
    margin-top: 10px; /* Adiciona espaço acima dos botões */
    margin-bottom: 20px; /* Adiciona espaço abaixo dos botões */
}

/* Adiciona espaço entre os botões */
#botoesContainer input[type="button"] {
    margin-right: 10px; /* Espaço entre os botões */
}

/* Remove margem direita do último botão para evitar espaço extra */
#botoesContainer input[type="button"]:last-child {
    margin-right: 0;
}

/* Estilos para os botões de compartilhamento */
.compartilhamento-container {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    text-align: center;
}

.compartilhamento-container h3 {
    margin-top: 0;
    color: #ffa500;
    margin-bottom: 15px;
}

.botoes-compartilhamento {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-compartilhar {
    background-color: #ffa500;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-compartilhar:hover {
    background-color: #e69500;
}

.btn-compartilhar i {
    margin-right: 5px;
    font-size: 16px;
}

/* Estilos para os modais */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 400px;
    position: relative;
}

.fechar {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.fechar:hover {
    color: #000;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-enviar {
    background-color: #ffa500;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-enviar:hover {
    background-color: #e69500;
}

/* Estilos responsivos para os modais */
@media (max-width: 600px) {
    .modal-content {
        width: 90%;
        margin: 30% auto;
    }
    
    .botoes-compartilhamento {
        flex-direction: column;
    }
    
    .btn-compartilhar {
        width: 100%;
        justify-content: center;
    }
}

/* Novos estilos para a seção de feedback e informações */
.feedback-info-container {
    margin-top: 30px;
    padding: 15px;
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.botoes-feedback-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-feedback, .btn-info {
    background-color: #ffa500;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: background-color 0.3s;
    flex: 1;
    justify-content: center;
}

.btn-feedback:hover, .btn-info:hover {
    background-color: #e69500;
}

.btn-feedback i, .btn-info i {
    margin-right: 5px;
    font-size: 16px;
}

/* Estilos para o textarea de feedback */
textarea#mensagemFeedback {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    min-height: 100px;
    font-family: Arial, sans-serif;
}

.dica {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    text-align: right;
    font-style: italic;
}

/* Estilos para o conteúdo de informações */
.info-content {
    text-align: left;
    line-height: 1.5;
}

.info-content p {
    margin: 10px 0;
}

.info-content a {
    color: #ffa500;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

/* Ajustes responsivos para a seção de feedback e informações */
@media (max-width: 600px) {
    .feedback-info-container {
        width: 100%;
        padding: 10px;
    }
    
    .botoes-feedback-info {
        flex-direction: column;
    }
    
    .btn-feedback, .btn-info {
        width: 100%;
    }
}
