/* Estilo básico para o modal */
.report-modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
  }
  
  .report-modal-content {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    width: 80%;
    max-width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

  /* Estilo para os elementos do formulário */
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
  
  label {
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  input[type="text"],
  input[type="email"],
  select,
  textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }
  
  textarea {
    resize: none;
    height: 100px;
  }
  
  .recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }
  
  /* Estilo para os botões */
  button {
    background-color: #3498db;
    border: none;
    border-radius: 5px; /* Altere para 5px ou outro valor que desejar */
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    padding: 10px;
    text-align: center;
    width: 100%;
  }
  
  button:hover {
    background-color: #2980b9;
  }
  
  button.is-info {
    background-color: #3498db;
    border-radius: 5px;
  }
  
  button.is-info:hover {
    background-color: #2980b9;
  }
  
  /* Botões lado a lado */
  .buttons-row {
    display: flex;
    justify-content: space-between;
  }
  
  #closeReportModalButton {
    margin-left: 10px;
    border-radius: 5px;
    width: calc(50% - 5px);
  }
  
  button[name="submitReportButton"] {
    width: calc(50% - 5px);
  }
  
  /* Estilo para as mensagens flash */
  .modal-message {
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 10px;
    text-align: center;
  }
  
  .alert-success {
    background-color: #2ecc71;
    color: #fff;
  }
  
  .alert-danger {
    background-color: #e74c3c;
    color: #fff;
  }

  .centered-title {
    text-align: center;
  }
  
  .radio-buttons-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
  }
  
  #closeReportModalButton {
    background-color: red;
    color: white;
    border: none;
  }
  
  /* Estilo do botão "Close" ao passar o mouse */
  #closeReportModalButton:hover {
    background-color: darkred;
    cursor: pointer;
  }

  /* Espaçamento entre os botões de opção */
input[type="radio"] {
    margin-right: 10px;
    margin-left: 20px;
  }
  
