.login-container {
  max-width: 400px;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Evita que los botones de acción se amontonen o se doblen */
.table td.text-nowrap {
  white-space: nowrap;
  vertical-align: middle;
}

/* Espaciado mínimo entre botones dentro de la celda */
.table td.text-nowrap .btn {
  margin-right: 2px;
}

/* Opcional: Si el título es muy largo, que no rompa la tabla */
.table td:nth-child(2) {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-container {
  height: 400px;
  width: 100%;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main, .page-content {
  flex: 1;
}

footer {
  margin-top: auto;
}


main.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 40px 20px;
}

.error-code {
  font-size: 7rem;
  font-weight: 700;
  color: #0d6efd;
  animation: pulse404 2s infinite;
}

@keyframes pulse404 {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.8;
  }
}

.error-message {
  font-size: 1.5rem;
  color: #6c757d;
  margin-bottom: 30px;
}

.btn-home {
  font-size: 1.1rem;
  padding: 10px 25px;
}



