body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
}

.container {
    padding: 20px;
    max-width: 1200px; /* Limita el ancho para pantallas grandes */
    margin: auto;
}

.columns {
    display: flex; /* Usamos flexbox para las columnas */
    justify-content: space-between; /* Espacio entre las dos columnas */
    gap: 20px; /* Separación entre las columnas */
}

.column {
    flex: 1; /* Cada columna ocupa el mismo espacio */
    background-color: #222; /* Fondo para las columnas */
    padding: 20px;
    border-radius: 10px;
}

h2 {
    color: white;
    text-align: center;
}

.monday-lesson, .ubits-lesson {
    margin-top: 20px;
    color: white;
}

.monday-lesson p, .ubits-lesson p {
    margin: 10px 0;
}

/* Hacemos que la interfaz sea responsive */
@media (max-width: 768px) {
    .columns {
        flex-direction: column; /* Cambiar a columna cuando la pantalla sea pequeña */
    }
}

.BELT-logo {
    width: 100px;
    margin-bottom: 10px;
}

.BELT {
    font-size: 18px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    color:rgba(255,255,255,75%)
}

.monday-logo {
    width: 100%;
    max-width: 300px;
    margin-bottom: -15px;
}

.BUK-logo {
    width: 155px;
    max-width: 300px;
    margin-bottom: 14px;
    padding-top: 8px;
}

.button, .button2 {
    background-color: #333;
    color: white;
    padding: 15px;
    margin: 10px 0;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: left;
}

.button2 {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.button2 p {
    padding-left: 40px;
    padding-right: 40px;
    text-align: justify;
    margin-top: auto;
}

.button-header, .button-header2 {
    display: flex;
    align-items: center;
    width: 100%;
    color: white;
    text-decoration: none;
}

.button-header:hover, .button-header2:hover {
    color: darkgray;
    text-decoration: none;
}

.button img, .button2 img{
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 50%;
}

.destinado{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.arrow {
    cursor: pointer;
    font-size: 20px;
}

.button-content {
    display: none;
    padding-left: 60px;
    margin-top: 10px;
}

.button-content li {
    text-align: left;
    margin: 5px 0;
}

.button:hover, .button2:hover {
    background-color: #555;
}

.lesson-info {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.lesson-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: white;
    margin-top: 2px;
    margin-bottom: 3px;
}

.LessonName {
    margin: 0;
    padding-left: 40px;
}
