/**
 * LiveBar Wetter Icon Widget Styles
 */

.livebar-wetter-icon-container {
    display: inline-block;
    line-height: 1;
}

.livebar-wetter-icon-container .livebar-wetter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0;
}

.livebar-wetter-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    transition: all 0.3s ease;
}

/* Animation Effects */
.livebar-wetter-icon-container.elementor-animation-bounce:hover .livebar-wetter-icon {
    animation: bounce 0.6s ease-in-out;
}

.livebar-wetter-icon-container.elementor-animation-pulse:hover .livebar-wetter-icon {
    animation: pulse 1s ease-in-out infinite;
}

.livebar-wetter-icon-container.elementor-animation-rotate:hover .livebar-wetter-icon {
    animation: rotate 0.6s ease-in-out;
}

.livebar-wetter-icon-container.elementor-animation-scale:hover .livebar-wetter-icon {
    animation: scale 0.3s ease-in-out;
}

/* Keyframes for Animations */
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes scale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Behavior */
@media (max-width: 768px) {
    .livebar-wetter-icon-container {
        width: 100%;
    }
} 