/* Archivo CSS optimizado para Bootstrap */

/* Estilos globales */
body {
  font-family: 'Inter', sans-serif;
  background-color: #EEEEEE;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;


}

/* Ajustes del navbar */
.navbar {
  background: rgba(0, 0, 0, 0.7) !important;
}
.navbar-brand,
.navbar-nav .nav-link {
  color: #0a008e !important;
  font-weight: bold !important;
}
.navbar-nav .nav-link:hover {
  color: #f0a500 !important;
}

/* Ajuste de iconos de usuario */
.user-icons img {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

/* Ajuste del carrusel */
.carousel-item img {
  height: 455px;
  object-fit: cover;
}

/* Estilos para secciones */
h2 {
  text-align: center;
  font-weight: bold;
}

h3 {
  text-align: left;
  font-weight: 900;
}

/* Estilos de tarjetas */
.card {
  border-radius: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.card-img-top {
  border-radius: 15px 15px 0 0;
  height: 200px;
  object-fit: cover;
}

/* Separador */
.custom-separator {
  width: 90%;
  margin: 2rem auto;
  height: 3px;
  background-color: #ccc;
  border-radius: 5px;
}

/* Footer */
footer {
  background-color: #134374;
  color: white;
  padding: 1.3rem;
  text-align: center;
  margin-top: auto;
}


.error-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex; 
  flex-direction: column; 
  align-items: center; 
}

.error-image {
  max-width: 100px; 
  height: auto;
  margin-bottom: 20px; 
}
.error-body {
  font-family: sans-serif;
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  text-align: center;
}

.error-back-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.error-back-button:hover {
  background-color: #0056b3;
}