.bg-black {
  background: #000000;
  color: #CED4DA;
}

.centrar-boton {
  margin: 0 auto;
  /* Margen automático a izquierda y derecha para centrar el botón */
}

select::-ms-expand {
  color: #FF0000;
  /* Cambia a tu color deseado */
}


.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding: 100px 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

/* Contenido de la ventana emergente */
.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  text-align: center;
  position: relative;
}

/* Estilo para el botón de cerrar */
.close {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.flex-container {
  display: flex;
}

.flex-item {
  flex: 1;
  margin: 10px;
  /* Ajusta el margen según tu diseño */
}

.text-center {
  text-align: center;
}

table {
  table-layout: auto;
  /* Ajustar automáticamente al contenido */
}

.divisoria-horizontal {
  width: 100%;
  height: 5px;
  /* Grosor de la línea */
  background-color: #CED4DA;
  /* Color de la línea */
  margin: 10px 0;
  /* Margen superior e inferior para ajustar el espaciado */
}

/* Add this CSS to your stylesheet or in a <style> tag in your HTML */





@media (max-width: 768px) {

  /* Estilos para pantallas de teléfono */
  a {
    font-size: 12px;
  }

  p {
    font-size: 12px;
  }
}

.container2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content2 {
  display: flex;
  align-items: center;
}


.image-container {
  position: relative;
  display: inline-block;
  transition: filter 0.3s;
}

.image-container img {
  transition: filter 0.3s;
}

.image-text {
  position: absolute;
  top: 50%;
  left: 80%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  transition: font-size 0.3s, opacity 0.3s;
  color: white;
}

.image-container:hover img {
  filter: brightness(0.7);
  /* Aplicar el filtro de opacidad a la imagen */
}

.image-container:hover .image-text {
  font-size: 18px;
}

@media (max-width: 576px) {
  #welcomeModal .modal-dialog {
    margin: 30px auto;
  }
}

.resolution-menu {
  position: absolute;
  left: 26%;

}