/* ENLACES */
/* Estilo general para enlaces */
a {
  color: #17a2b8 !important; /* eastern-blue 500 */
  text-decoration: none !important;
  transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

a:hover {
  color: #1789a3 !important; /* eastern-blue 600 */
  filter: brightness(1.2) !important;
  transform: scale(1.05) !important;
}

a:focus {
  color: #1789a3 !important;
  outline: none !important;
  box-shadow: 0 0 0 0.2rem rgba(23, 137, 163, 0.5) !important;
}

a:active {
  color: #1d4c5c !important; /* eastern-blue 900 */
  transform: scale(0.98) !important;
}

a:visited {
  color: #17a2b8; /* eastern-blue 700 */
}

/* Sobreescribe btn-primary */
.btn-primary {
  background-color: #17a2b8 !important; /* eastern-blue 500 */
  border-color: #17a2b8 !important;
  color: #FAF7EC !important; /* Texto claro para buen contraste */
}

.btn-primary:hover {
  background-color: #34c8dc !important; /* eastern-blue 400 */
  border-color: #34c8dc !important;
  color: #FAF7EC !important; /* Mantener texto claro en hover */
}

.btn-primary:focus, .btn-primary.focus {
  background-color: #34c8dc !important; /* eastern-blue 400 */
  border-color: #34c8dc !important;
  color: #FAF7EC !important;
  /*box-shadow: 0 0 0 0.25rem rgba(52, 200, 220, 0.5) !important;*/
  box-shadow: none !important;
}

.btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  background-color: #196e85 !important; /* eastern-blue 700 */
  border-color: #196e85 !important;
  color: #FAF7EC !important;
}

.btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  /*box-shadow: 0 0 0 0.25rem rgba(25, 110, 133, 0.5) !important;*/
  box-shadow: none !important;
}

.btn-primary:disabled, .btn-primary.disabled {
  background-color: #adeef4 !important; /* eastern-blue 200 */
  border-color: #adeef4 !important;
  color: #1d4c5c !important; /* Texto más oscuro para disabled */
}

/* Sobreescribe btn-secondary */
.btn-secondary {
  background-color: #196e85 !important; /* eastern-blue 700 */
  border-color: #196e85 !important;
  color: #FAF7EC !important;
}

.btn-secondary:hover {
  background-color: #1789a3 !important; /* eastern-blue 600 */
  border-color: #1789a3 !important;
  color: #FAF7EC !important;
}

.btn-secondary:focus, .btn-secondary.focus {
  background-color: #1789a3 !important; /* eastern-blue 600 */
  border-color: #1789a3 !important;
  color: #FAF7EC !important;
  /*box-shadow: 0 0 0 0.25rem rgba(23, 137, 163, 0.5) !important;*/
  box-shadow: none !important;
}

.btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  background-color: #1d4c5c !important; /* eastern-blue 900 */
  border-color: #1d4c5c !important;
  color: #FAF7EC !important;
}

.btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  /*box-shadow: 0 0 0 0.25rem rgba(29, 76, 92, 0.5) !important;*/
  box-shadow: none !important;
}

.btn-secondary:disabled, .btn-secondary.disabled {
  background-color: #d3f7fa !important; /* eastern-blue 100 */
  border-color: #d3f7fa !important;
  color: #196e85 !important;
}

.nav-link.active {
    background-color: #17a2b8 !important; /* eastern-blue 500 */
    color: #FFFFFF !important;
}

.nav-link:hover {
    background-color: #c5c2c2 !important;
}
.nav-link.active:hover {
    background-color: #17a2b8 !important;
}