/* ====== Estilo Geral ====== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* Navbar */
.navbar-brand {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

/* Cartões (cards) */
.card {
  border-radius: 0.75rem;
}

.card-header {
  font-weight: 600;
  font-size: 1.05rem;
}

.card-body {
  background-color: #fff;
}

/* Inputs e botões */
.form-label {
  font-weight: 500;
}

.btn {
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  transform: translateY(-1px);
}

/* Listas */
.list-group-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  background-color: #fff;
}

.list-group-item:last-child {
  border-bottom: none;
}

.list-group-item strong {
  color: #212529;
}

.list-group-item small {
  color: #6c757d;
}

/* Alertas temporários (exibirMensagem) */
.alert {
  min-width: 250px;
  max-width: 90%;
  text-align: center;
  border-radius: 0.5rem;
  font-weight: 500;
}

/* Footer */
footer {
  font-size: 0.85rem;
}

/* Responsividade extra */
@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.1rem;
  }
  .card-header {
    font-size: 1rem;
  }
}
