body {
  background: #f2f6fa;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 520px;
  margin: 30px auto;
}

h1 {
  background: #007bff;
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  padding: 20px;
  margin-top: 25px;
}

.status-icon {
  width: 120px;
  height: auto;
  margin: 10px auto;
  display: block;
  border-radius: 10px;
}

button, select, input {
  font-size: 16px;
  padding: 10px;
  margin: 5px 0;
  width: 85%;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box; /* Garante que padding e border sejam incluídos na largura */
}

button {
  background: #007bff;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

button:hover {
  background: #0056b3;
}

.admin-btn {
  display: block;
  width: 85%;
  max-width: 400px;
  margin: 15px auto;
  padding: 10px;
  background: #28a745;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: opacity 0.3s;
}

.admin-btn:hover {
  opacity: 0.85;
}

/* Estilos específicos para alertas Bootbox */
.bootbox-danger .modal-content {
    border-color: #dc3545 !important;
}
.bootbox-danger .modal-header {
    background-color: #dc3545 !important;
    color: white !important;
}
.bootbox-success .modal-content {
    border-color: #28a745 !important;
}
.bootbox-success .modal-header {
    background-color: #28a745 !important;
    color: white !important;
}
/* Estilo para bootbox-success - para ficar mais visível */
.bootbox.modal.fade.bootbox-success .modal-content {
    border-color: #28a745; /* Verde do sucesso */
    border-width: 2px;
}
.bootbox.modal.fade.bootbox-success .modal-header {
    background-color: #28a745; /* Fundo verde */
    color: white;
    border-bottom: 1px solid #1e7e34;
}
.bootbox.modal.fade.bootbox-success .modal-title {
    color: white; /* Título branco */
    font-weight: bold;
}
.bootbox.modal.fade.bootbox-success .bootbox-body {
    color: #218838; /* Texto verde mais escuro */
    font-weight: bold;
}
.bootbox.modal.fade.bootbox-success .btn-primary {
    background-color: #28a745; /* Botão verde */
    border-color: #218838;
}
.bootbox.modal.fade.bootbox-success .btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}
.bootbox.modal.fade.bootbox-success .btn-close {
    filter: invert(1); /* Ícone fechar branco para contraste */
}
.logo-container {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap; /* Quebra linha se precisar */
      padding: 10px;
      background-color: #1E3170;
    }

    .logo-container img {
      max-width: 100%;
      height: auto;
      width: 150px; /* tamanho padrão */
    }

    .logo-container h1 {
      color: #fff;
      font-size: 2em;
      margin-left: 15px;
      text-align: center;
    }

    /* Responsividade */
    @media (max-width: 600px) {
      .logo-container {
        flex-direction: column; /* empilha no celular */
      }

      .logo-container h1 {
        margin-left: 0;
        font-size: 1.5em;
      }
    }