/* Estilos generales */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Estilos de fondo */
.bg-col1 {
  background-color: #3888FF;
}

.bg-primary, .bg-second, .bg-success, .bg-danger, .bg-warning, .bg-info, .bg-light, .bg-dark {
  background-color: #0F4E70;
}

/* Estilos de texto */
.text-primary {
  color: #0F4E70;
}

/* Estilos de encabezado */
.header {
  background-color: #007bff;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.header .title {
  font-size: 24px;
  margin-right: auto;
}

.header nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header nav ul li {
  margin-right: 20px;
}

.header nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s, background-color 0.3s;
}

.header nav ul li a:hover {
  color: #007bff;
  background-color: #fff;
  border-radius: 5px;
  padding: 10px 15px;
}

/* Estilos de sección */
.first {
  padding: 20px 0;
}

.first #contenido table {
  border: 1px solid black;
  width: 100%;
  border-collapse: collapse;
}

.first #contenido table th, .first #contenido table td {
  border: 1px solid black;
  padding: 10px;
}

.first #contenido table tr:hover {
  background-color: cornflowerblue;
}
