/* Zoom Indicator Component Styles */

/* Styles pour la loupe dans les images (show.html.twig) */
.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
}

.zoom-indicator {
    position: absolute;
    bottom: 1.8rem;
    right: 0.8rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.image-wrapper:hover .zoom-indicator {
    opacity: 1;
    transform: scale(1);
}

.zoom-indicator i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Styles pour la loupe sur les cartes de version (index.html.twig) */
.version-image {
    position: relative;
}

.zoom-indicator-card {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.version-image:hover .zoom-indicator-card {
    opacity: 1;
    transform: scale(1);
}

.zoom-indicator-card i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

