/* Animation Icons Styles */
.animation-icons {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.animation-icon {
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.animation-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.animation-icon.active {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--light-text);
    box-shadow: 0 2px 10px rgba(45, 70, 185, 0.3);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .animation-icons {
        display: none; /* Ukryj ikony na małych ekranach */
    }
}