.vibrance-qr-code img {
    display: block;
    margin: 0 auto;
    border: 2px solid #333;
    border-radius: 5px;
}

.vibrance-qr-code p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.qr-code-wrapper {
    display: inline-block;
    position: relative;
}

.qr-code-print-btn {
    margin-top: 10px;
}

.qr-code-print-btn:hover i {
    color: #666;
}

/* Style pour le pop-up d'instructions d'impression */
.qr-code-print-instructions {
    display: none;
    position: fixed;
    width: 200px;
    height: 200px;
    background-color: rgba(128, 128, 128, 0.6);
    border: 1px solid #73bbc1;
    border-radius: 5px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    z-index: 1001;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ajouter un overlay sombre */
.qr-code-print-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* Style pour le toggle switch */
.vibrance-toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.vibrance-toggle-checkbox {
    opacity: 0;
    width: 0;
    height: 0;
}

.vibrance-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.vibrance-toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.vibrance-toggle-checkbox:checked + .vibrance-toggle-slider {
    background-color: #66ff80;
}

.vibrance-toggle-checkbox:checked + .vibrance-toggle-slider:before {
    transform: translateX(26px);
}

.vibrance-toggle-checkbox:disabled + .vibrance-toggle-slider {
    background-color: #ddd;
    cursor: not-allowed;
}