/* Menu Principal */
.background-light,
.background-dark {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.background-light {
    background:
        radial-gradient(ellipse 100% 100% at 50% 50%, rgba(153, 150, 169, 0.13) 0%, transparent 100%),
        linear-gradient(148deg,
            #ffffff 0%,
            #f2f0fb 20%,
            #eae7f9 42%,
            #e5e2f6 58%,
            #f0edfb 78%,
            #ffffff 100%
        );
}

.background-dark {
    background:
        radial-gradient(ellipse 70% 50% at 22% 12%, #0d3a4a 0%, #091828 45%, transparent 75%),
        radial-gradient(ellipse 50% 35% at 58% 50%, rgba(13, 25, 52, 0.55) 0%, transparent 70%),
        #080d1a;
}

.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) */
}