
/*-----------------------
  Tabla de actividades de CMJ
-----------------------*/

.cmj-actividades {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.cmj-actividad {
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
}

.cmj-actividad .izquierda,
.cmj-actividad .derecha {
    display: flex;
    flex-direction: column;
    border: 1px solid #023e7e;
}

.cmj-actividad .izquierda {
    min-width: 220px;
    max-width: 220px;
}

.cmj-actividad .izquierda > *:not(:last-child),
.cmj-actividad .derecha > *:not(:last-child) {
    border-bottom: 1px solid #023e7e;
}

.cmj-actividad .izquierda > * {
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 8px;
    color: #023e7e;
    font-weight: 700;
    padding: 8px;
}

.cmj-actividad .izquierda .label {
    color: #7d7d7d;
    text-transform: uppercase;
}

.cmj-actividad .derecha {
    width: 100%;
}

.cmj-actividad .derecha > * {
    padding: 8px;
}

.cmj-actividad .titulo {
    color: #023e7e;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    background-color: #c6c4c5;
}

.cmj-actividad .descripcion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 12px;
}
