/* Estilo da página */
body {
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
  color: #495057;
}

/* Estilo da página de login */
.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background: linear-gradient(to right, #131B28, #1A2B3C);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  max-width: 400px;
  margin: auto;
}

/* Estilos para outras páginas (excluindo login) */
body:not(.login-page) h1,
body:not(.login-page) h3 {
  color: #131B28;
}

body:not(.login-page) .btn-primary {
  background-color: #131B28;
  border-color: #131B28;
}

body:not(.login-page) .btn-primary:hover {
  background-color: #0e1520;
  border-color: #0b111a;
}

body:not(.login-page) .section-title {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: bold;
  color: #131B28;
}

body:not(.login-page) .section {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  background-color: #f8f9fa;
}

body:not(.login-page) .form-control:focus {
  border-color: #131B28;
  box-shadow: 0 0 0 0.2rem rgba(19, 27, 40, 0.25);
}

.table-container {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.list-group-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list-group-item select,
.list-group-item input[type="text"] {
  margin-left: 10px;
  flex: 1;
}

.form-control {
  background-color: #f8f9fa;
  color: #495057;
  border: 1px solid #ced4da;
}

.alert {
  margin-top: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 18px;
  text-align: center;
}

th,
td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: center;
}

input[type="radio"] {
  transform: scale(1.5);
}

td {
  vertical-align: middle;
}