/**
 * Bouton de retour universel pour les démos
 * Injecté automatiquement dans toutes les prévisualisations
 */

.demo-back-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #037CFB;
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    z-index: 999999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: solid 2px #037CFB;
}

.demo-back-button:hover {
    transition: background-color .3s, color .3s;
    background-color: white;
    color: #037CFB!important;
}

.demo-back-button:active {
    transition: background-color .3s, color .3s;
    background-color: white;
    color: #037CFB!important;
    border: solid;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .demo-back-button {
        top: 10px;
        left: 10px;
        padding: 10px 16px;
        font-size: 13px;
    }
}
