/* Contrôleur global de taille de texte - b7078333 */
.text-resizer-container-b7078333 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 8px;
}

/* Bouton flottant principal */
.text-resizer-toggle-b7078333 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #111827;
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    transition: transform 0.2s, background-color 0.2s;
}

.text-resizer-toggle-b7078333:hover {
    background-color: #1f2937;
    transform: scale(1.05);
}

/* Panneau de contrôle */
.text-resizer-panel-b7078333 {
    display: flex;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.text-resizer-container-b7078333.active .text-resizer-panel-b7078333 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Boutons d'action */
.text-resizer-btn-b7078333 {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}

.text-resizer-btn-b7078333:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.text-resizer-btn-b7078333.reset {
    font-size: 11px;
    width: auto;
    padding: 0 10px;
    border-radius: 20px;
}
