* {
    max-width: 500px;
}

body {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: right;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.color {
    color:#fff;
}
.fondo1 {
    background-image: url('../img/img/fondo1.jpg');
}
.fondo2 {
    background-image: url('../img/img/fondo2.jpg');
}

.contenedor {
    /* Estilos para el contenido de la página */
    flex-grow: 1; /* Permite que el contenido ocupe el espacio restante */

}

.titulo {
    background-color: white;
    padding: 10px;

}

.boton {
    margin: auto;
    font-size: larger;
    background-color: #009CA6;
    color: #fff;
    border-radius: 10px;
    box-shadow: 10px 10px 20px -5px rgba(0, 0, 0, 1);
}
ul ul {
    width: 90%;
    overflow-y: auto; /* Agregar scroll vertical cuando sea necesario */
  }
  
a, a:hover, a:active {
    text-decoration: none; /* Elimina el subrayado */
    color: #fff; /* Cambia el color del texto a rojo (#ff0000) */
}

canvas {
    width: 100%;
}

.card {
    background-color: #009CA6;
    color: #fff;
    margin: 20px;
    float: left;
    box-shadow: 10px 10px 20px -5px rgba(0, 0, 0, 1);
}
.card-text {
    text-align: justify;
}
.card-body:last-child {
    text-align: center;
}

/*********==========Tablas con divs*/
.div-table{
    display: table !important;
    width: 100%;
    margin: 20px 0;
    padding: 0;
    background-color: #fff;
    height: auto !important;
}
.div-table-row{
    display: table-row !important;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
    height: 40px;
    line-height: 40px;
}
.div-table-row:hover{ background-color: #F5F5F5; }
.div-table-row .div-table-cell:first-child{ border-left: 1px solid #E1E1E1; }
.div-table-cell{
    display: table-cell !important;
    margin: 0;
    padding: 0;
    background-color: transparent;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #E1E1E1;
    border-right: 1px solid #E1E1E1;
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    text-align: center;
}
.div-table-head,
.div-table-head:hover{
    background-color: #DFF0D8;
    font-size: 17px;
    font-weight: bolder;
}
.div-table-head .div-table-cell{ border-top: 1px solid #E1E1E1 !important; }
.div-table-row-list .div-table-cell{ border: none; }
.div-table-row-list{ border: none; }
.div-table-row-list .div-table-cell:first-child{ border-left: none; }
