@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&family=Roboto:wght@400&display=swap');
        /* Réinitialisation des marges et des paddings */
        * {
            margin: 0;
            padding: 0;
        }

        /* Style général du body */
        body {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f5f5f5;
        }

        /* Style du conteneur principal */
        .container {
            display: flex;
            align-items: center;
            text-align: center;
        }

        /* Style des boutons d'action */
        .actions {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        /* Style des boutons d'action */
        .action-button {
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            color: gray;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .action-button.active {
            color: black;
        }

        /* Style de la timeline */
        #timeline {
            width: 65vw; /* Utilisation de la largeur du viewport pour une meilleure réactivité */
            height: 10px;
            background-color: gray;
            position: relative;
            cursor: pointer;
            margin-top: 20px;
        }

        /* Style de la barre de progression */
        #progress-bar {
            width: 0%;
            height: 100%;
            background-color: red;
            transition: width 0.1s ease;
        }

        /* Style des icônes */
        .play-icon::before {
            content: '▶';
            font-size: 2rem;
        }

        .pause-icon::before {
            content: '||';
            font-size: 2rem;
        }

        .stop-icon::before {
            content: '⏹';
            font-size: 2rem;
        }

        #LireEnBoucle {
            margin-left: 10px;
        }

        .loop-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        select {
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-family: 'Inter', sans-serif;
        }

        #loop-btn, #afficher-le-lien, .toto2, #matobutton, #titillerbutton, #submiChergerAudio, #matobutton0, #matobutton1 {
            font-family: 'Inter', sans-serif;
            font-size: 1.5em;
            cursor: pointer;
        }

        .container {
            flex-direction: column;
        }

        .volume-control {
            display: flex;
            margin-top: 10px; 
        }

        #volume-percentage {
            margin-top: 6px;
        }

        .time-display {
            margin-top: -20px; /* Ajustement de la marge pour les petits écrans */
        }
        #speed-control {
            margin-top: 10px;
        }
