/* LOGIN */
body.ic-Login-Body #footer.ic-Login-footer {
    display: none !important;
}
body.ic-Login-Body div#main.ic-Layout-columns {
    display: flex;
    align-items: center;
}
body.ic-Login-Body .ic-Login-header__logo {
    flex: auto !important;
    justify-content: center;
    display: flex;
    width: 100%;
}
body.ic-Login-Body .ic-Login-header__logo img {
    margin: 1em;
    margin-bottom: 0;
    max-width: 60%;
}
body.ic-Login-Body .ic-Login__innerContent {
    background-color: var(--transparencia); !important;
    border-radius: 10px !important;
    padding-top:0px !important;
}

#teacher-global-message {
    background-color: #f0f8ff; /* Azul claro */
    border: 1px solid #cce5ff;
    color: #004085;
    padding: 15px 20px;
    margin-bottom: 20px; /* Espacio debajo del mensaje */
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    font-size: 14px;
    position: sticky; /* O fixed si quieres que flote siempre */
    top: 0; /* Si es sticky o fixed */
    z-index: 1000; /* Asegura que estÃ© por encima de otros elementos */
    /* text-align: center; */
}

#teacher-global-message .teacher-message-content {
    position: relative;
}

#teacher-global-message p {
    margin: 5px 0;
}

#teacher-global-message a {
    color: #004085;
    text-decoration: underline;
}

#teacher-global-message button {
    background: none;
    border: none;
    font-size: 1.2em;
    font-weight: bold;
    color: #004085;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0 5px;
}

#teacher-global-message button:hover {
    color: #dc3545; /* Rojo para el hover */
}