/* Styles pour PWA - Empêcher les comportements de popup */
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    -webkit-touch-callout: none;
}

/* Empêcher le zoom sur double-tap pour les liens */
a, button {
    touch-action: manipulation;
}

/* Améliorer les performances de scroll sur mobile */
body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

/* Empêcher le pull-to-refresh sur iOS */
body {
    overscroll-behavior: none;
}

/* Style pour les liens dans les cards */
.motivation-card a,
.post a {
    text-decoration: none;
    color: inherit;
}

/* Améliorer l'affichage en mode standalone */
@media (display-mode: standalone) {
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .header {
        padding-top: env(safe-area-inset-top);
    }
    
    .bottom-nav {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

