/* Importation de la typographie Apprendly */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&family=Pacifico&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8f8f6; /* Le fond beige très clair de ta capture */
    overflow-x: hidden;
    color: #1e293b;
}

/* Animation douce pour l'ouverture des dossiers (Effet Apple/OS) */
.dossier-popup {
    transform-origin: top center;
    animation: popup-in 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes popup-in {
    0% { opacity: 0; transform: scale(0.95) translateY(-10px) translateX(-50%); }
    100% { opacity: 1; transform: scale(1) translateY(0) translateX(-50%); }
}

/* Le fond des icônes d'application */
.app-icon-bg {
    background: #ffffff;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.03);
}
