/* Menu Principal */
.background-image {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    cursor: pointer;
    text-decoration: none;
}

.app-card:hover .app-icon-box {
    border-color: var(--mud-palette-primary-lighten);
    background: var(--mud-palette-background-gray);
    box-shadow: 0 8px 24px 0 rgba(0,0,0,0.18);
    transform: translateY(-2px);
}

.app-icon-box {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--mud-palette-lines-default);
    border-radius: 16px;
    margin-bottom: 0.7rem;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
    box-shadow: none;
}

/* Ajuste de posición de snackbars */
.mud-snackbar-location-top-right {
    top: 50px !important; /* valor por defecto (~24px) */
}