body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #163e5d 0%, #163e5d 100%);
    min-height: 100vh;
    color: #163e5d;
}

::selection {
    background-color: #163e5d;
    color: #fff;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Styles pour le contenu du résultat */
/* #result {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

#result p {
    margin: 0.8em 0;
    line-height: 1.6em;
    text-align: left;
}

#result ul,
#result ol {
    margin: 0.8em 0 0.8em 1.5em !important;
    padding: 0 1em 0 0;
    list-style-position: outside !important;
}

#result li {
    margin: 0.4em 0 !important;
    padding: 0 !important;
    line-height: 1.5em !important;
}

#result h2,
#result h3,
#result h4 {
    margin: 1.2em 0 0.8em 0;
    line-height: 1.3;
} */

/* Ajustement pour le conteneur principal */
#resumeContainer .bg-gray-50 {
    padding: 1.5rem !important;
}

/* Ajustement pour les petits écrans */
@media (max-width: 640px) {
    #result {
        padding: 0 0.5rem;
    }

    #result p,
    #result ul,
    #result ol {
        margin: 0.6em 0;
    }
}


.input-focus:focus {
    outline: none;
    border-color: #163e5d;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.qr-container {
    transition: all 0.3s ease;
}

.qr-container.show {
    opacity: 1;
    transform: scale(1);
}

.qr-container.hide {
    opacity: 0;
    transform: scale(0.9);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}